fixed Index: sim/common/sim-options.c =================================================================== RCS file: /cvs/src/src/sim/common/sim-options.c,v retrieving revision 1.31 diff -u -p -r1.31 sim-options.c --- sim/common/sim-options.c 3 Sep 2013 20:45:08 -0000 1.31 +++ sim/common/sim-options.c 21 Sep 2013 02:56:18 -0000 @@ -35,6 +35,7 @@ along with this program. If not, see wrote: >>>>>> "Alexey" == Alexey Makhalov writes: > > Alexey> + arg_table = htab_create (ARG_HASH_SIZE, htab_hash_string, > Alexey> + (int (*)(const void *, const void *)) streq, free); > > I think casts like this are better avoided. > Since streq is only used here, it is no trouble to just give it the > proper type. > > Alexey> + *slot = strdup(arg); > > The GNU coding style requires a space before the paren here. > > Tom