X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fparse.c;h=5bf2bd71a957d95900c13076101ee5afc0eca415;hb=40ae39a7efa404ba4107b394c358fc7d38e9ec91;hp=5efbaf97792ecaaa5733e52fb720e00c0da26ee1;hpb=1cb57a35a3b3cc4ec8870531ca254a655c0bdda2;p=plomrogue diff --git a/src/client/parse.c b/src/client/parse.c index 5efbaf9..5bf2bd7 100644 --- a/src/client/parse.c +++ b/src/client/parse.c @@ -1,6 +1,11 @@ -/* src/client/parse.c */ - -#define _POSIX_C_SOURCE 200809L /* strdup() */ +/* src/client/parse.c + * + * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3 + * or any later version. For details on its copyright, license, and warranties, + * see the file NOTICE in the root directory of the PlomRogue source package. + */ + +#define _POSIX_C_SOURCE 200809L /* strdup(), snprintf() */ #include "parse.h" #include /* size_t, NULL */ #include /* FILE, snprintf() */ @@ -31,7 +36,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 +70,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."); }