modindex: getopt_long returns int not char (fix ppc64 bug)
commit7046f4539b0eaceb6923981fd718a3c44d47a353
authorJon Masters <jcm@jonmasters.org>
Wed, 27 May 2009 22:27:46 +0000 (27 18:27 -0400)
committerJon Masters <jcm@jonmasters.org>
Wed, 27 May 2009 22:27:46 +0000 (27 18:27 -0400)
tree9f436dbf86fe673b64befd0f99ee701c4d619c28
parentb9d6de8434a516f0d8ce3114b0af6c3355bf5ef6
modindex: getopt_long returns int not char (fix ppc64 bug)

getopt_long returns an int and not a char. The existing code will fail a return
test on ppc64 where the -1 comparison will never succeed, so instead garbage
will exist in 'opt' at the end of the main while loop.

Signed-off-by: Jon Masters <jcm@jonmasters.org>
modindex.c