diff options
author | Jim Meyering <meyering@redhat.com> | 2009-08-15 18:08:02 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-08-15 18:08:02 +0200 |
commit | a54b8c9e5674744d40fd6cde71684abeb407ae14 (patch) | |
tree | f18c36d8a14f65f6bcec07feffcbbcb68395b7e5 /libidu/scanners.c | |
parent | 28b0d61c38f5c8136c6d8d5d984ddf1eba2d5024 (diff) | |
download | idutils-a54b8c9e5674744d40fd6cde71684abeb407ae14.tar.gz idutils-a54b8c9e5674744d40fd6cde71684abeb407ae14.tar.bz2 idutils-a54b8c9e5674744d40fd6cde71684abeb407ae14.zip |
build: avoid a legitimate warning exposed by newer gcc
* libidu/scanners.c (language_save_arg): Remove decl of unused
static local, horizontal_space.
Diffstat (limited to 'libidu/scanners.c')
-rw-r--r-- | libidu/scanners.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libidu/scanners.c b/libidu/scanners.c index 19c8374..08907cb 100644 --- a/libidu/scanners.c +++ b/libidu/scanners.c @@ -101,7 +101,6 @@ language_help_me (void) void language_save_arg (char *arg) { - static char horizontal_space[] = " \t"; char *lang_name = strsep (&arg, ":"); struct language *lang = get_language (lang_name); |