whitespace tweaks

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34411 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2012-01-04 12:38:18 +00:00
parent 3f6bf1fbba
commit 34f183865b
3 changed files with 13 additions and 7 deletions

View file

@ -399,7 +399,7 @@ parseNumber(ParserState *state)
else\
number = realloc(number, bufferSize);\
}\
number[parsedSize++] = (char)x; } while(0)
number[parsedSize++] = (char)x; } while (0)
// JSON numbers must start with a - or a digit
if (!(c == '-' || isdigit(c)))
{