* src/getargs.c (getargs): Here.
+2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
+
+ Simplify last patch slightly.
+ * src/getargs.c (getargs): Here.
+
2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
Fix last warning from --enable-gcc-warnings.
{
char* name = optarg;
char* value = strchr (optarg, '=');
- char const * muscle_value = "";
if (value)
- {
- *value++ = 0;
- muscle_value = value;
- }
+ *value++ = 0;
muscle_percent_define_insert (name, command_line_location (),
- muscle_value);
+ value ? value : "");
}
break;