diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2019-06-24 22:52:20 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2019-06-24 22:52:20 +0300 |
commit | 466cfcd3e52f6750ce28a635997f3dd84fb18515 (patch) | |
tree | 9889b1b8f94c0b24a3c145f463169463c1f01dbc | |
parent | liblzma: Remove incorrect uses of lzma_attribute((__unused__)). (diff) | |
download | xz-466cfcd3e52f6750ce28a635997f3dd84fb18515.tar.xz |
xz: Make "headings" static in list.c.
Caught by clang -Wmissing-variable-declarations.
-rw-r--r-- | src/xz/list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xz/list.c b/src/xz/list.c index 70b4a9bb..06c9c1ee 100644 --- a/src/xz/list.c +++ b/src/xz/list.c @@ -101,7 +101,7 @@ static int colon_strs_fw[ARRAY_SIZE(colon_strs)]; /// Column headings -struct { +static struct { /// Table column heading string const char *str; |