Revert a change where an expression is not needed now, but could be in the future.

This commit is contained in:
Brett Cannon 2010-05-05 23:11:08 +00:00
parent 481ab89b75
commit f4f0bf850b
1 changed files with 1 additions and 0 deletions

View File

@ -1005,6 +1005,7 @@ format_float_short(double d, char format_code,
/* shouldn't get here: Gay's code should always return /* shouldn't get here: Gay's code should always return
something starting with a digit, an 'I', or 'N' */ something starting with a digit, an 'I', or 'N' */
strncpy(p, "ERR", 3); strncpy(p, "ERR", 3);
p += 3;
assert(0); assert(0);
} }
goto exit; goto exit;