Fix clang warning
This commit is contained in:
parent
fad465abf1
commit
7bed17b14b
|
|
@ -84,7 +84,7 @@ unsigned int callback_count_strs_max = 500;
|
|||
#define CHECK_RESULT_CSTR(got, exp) \
|
||||
if (strcmp((got), (exp))) { \
|
||||
printf("%%Error: %s:%d: GOT = '%s' EXP = '%s'\n", FILENM, __LINE__, \
|
||||
(got) ? (got) : "<null>", (exp) ? (exp) : "<null>"); \
|
||||
((got) != NULL) ? (got) : "<null>", ((exp) != NULL) ? (exp) : "<null>"); \
|
||||
return __LINE__; \
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue