X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=rmac.c;h=4e8234603be2f6f85a61d1fe69fc06630d353651;hp=cde6e123784b972cf676b38a04d208b34f7e9a39;hb=9d0b53158275f8f9f542fb4d4a873d54789fe027;hpb=2d302cb8c260f92984efbe9b6c8f9871beebeca5 diff --git a/rmac.c b/rmac.c index cde6e12..4e82346 100644 --- a/rmac.c +++ b/rmac.c @@ -195,7 +195,10 @@ int ParseOptimization(char * optstring) int opt_no = atoi(&optstring[2]); if ((opt_no >= 0) && (opt_no < OPT_COUNT)) + { optim_flags[opt_no] = onoff; + return OK; + } else return ERROR; }