X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=src%2Fclient%2Fparse.c;fp=src%2Fclient%2Fparse.c;h=c233a9203eb210d29a4fc608f7bbd854a07ccfbc;hb=491e8bc8e7a9b1d312256817c0b8be7e05b127be;hp=54d8fc3fb59d0027b3d7d17f8545a0a28ddf9594;hpb=3dedf6344c941891491773d1cc5d647aa664b218;p=plomrogue diff --git a/src/client/parse.c b/src/client/parse.c index 54d8fc3..c233a92 100644 --- a/src/client/parse.c +++ b/src/client/parse.c @@ -31,7 +31,7 @@ extern void parse_file(char * path, void (* token_to_entry) (char *, char *)) char * errline_line = try_malloc(linemax + 1, __func__); set_err_line_options(errline_intro, errline_line, 1); err_line_zero(); - err_line(0 == linemax, "File is empty."); + err_line(!linemax, "File is empty."); char * token0 = NULL; /* For final token_to_entry() if while() stagnates. */ char * token1 = NULL; char * err_val = "No value given."; @@ -65,7 +65,7 @@ extern void parsetest_defcontext(uint8_t flags) extern void parsetest_too_many_values() { - err_line(NULL != token_from_line(NULL), "Too many values."); + err_line(!(!token_from_line(NULL)), "Too many values."); }