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 | |
parent | 363ee376bab58b66c0966fae5f9afb11bab2787e (diff) | |
download | gsoc2013-evolution-6a2861c3aa49e9439d3e665b0855222716add3a3.tar gsoc2013-evolution-6a2861c3aa49e9439d3e665b0855222716add3a3.tar.gz gsoc2013-evolution-6a2861c3aa49e9439d3e665b0855222716add3a3.tar.bz2 gsoc2013-evolution-6a2861c3aa49e9439d3e665b0855222716add3a3.tar.lz gsoc2013-evolution-6a2861c3aa49e9439d3e665b0855222716add3a3.tar.xz 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
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | iconv-detect.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2007-10-09 Matthew Barnes <mbarnes@redhat.com> + + * iconv-detect.c (main): Remove an unused variable (#483301). + 2007-10-08 Matthew Barnes <mbarnes@redhat.com> * configure.in: Require libbonobo 2.16.0 or later (#483989). 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; |