diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-10-10 01:21:41 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-10-10 01:21:41 +0800 |
commit | 6a2861c3aa49e9439d3e665b0855222716add3a3 (patch) | |
tree | 7031533b9554b85cd21431bcf2120f8bc8129cb9 /iconv-detect.c | |
parent | 363ee376bab58b66c0966fae5f9afb11bab2787e (diff) | |
download | gsoc2013-evolution-6a2861c3aa49e9439d3e665b0855222716add3a3.tar.gz gsoc2013-evolution-6a2861c3aa49e9439d3e665b0855222716add3a3.tar.zst gsoc2013-evolution-6a2861c3aa49e9439d3e665b0855222716add3a3.zip |
Remove an unused variable (#483301).
2007-10-09 Matthew Barnes <mbarnes@redhat.com>
* iconv-detect.c (main): Remove an unused variable (#483301).
svn path=/trunk/; revision=34367
Diffstat (limited to 'iconv-detect.c')
-rw-r--r-- | iconv-detect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iconv-detect.c b/iconv-detect.c index 5d57b218fd..e95d525d5c 100644 --- a/iconv-detect.c +++ b/iconv-detect.c @@ -92,7 +92,7 @@ static int num_iso10646_tests = sizeof (iso10646_tests) / sizeof (CharInfo); int main (int argc, char **argv) { - unsigned int bits, iso8859, iso2022, iso10646; + unsigned int iso8859, iso2022, iso10646; CharInfo *info; iconv_t cd; FILE *fp; |