Skip to content
Snippets Groups Projects
Commit 14d093f440de authored by Reini Urban's avatar Reini Urban
Browse files

fix clang -Wlogical-op warnings

Commit amended by @perlpunk after suggestion from @tlsa
parent 962a7faec7a7
No related branches found
No related tags found
No related merge requests found
...@@ -2860,7 +2860,7 @@ ...@@ -2860,7 +2860,7 @@
if (!CACHE(parser, 1)) goto error; if (!CACHE(parser, 1)) goto error;
while ((int)parser->mark.column == indent && !IS_Z(parser->buffer)) while ((int)parser->mark.column == indent && !(IS_Z(parser->buffer)))
{ {
/* /*
* We are at the beginning of a non-empty line. * We are at the beginning of a non-empty line.
......
...@@ -178,7 +178,7 @@ ...@@ -178,7 +178,7 @@
* Check the current octet in the buffer. * Check the current octet in the buffer.
*/ */
#define CHECK(string,octet) CHECK_AT((string),(octet),0) #define CHECK(string,octet) (CHECK_AT((string),(octet),0))
/* /*
* Check if the character at the specified position is an alphabetical * Check if the character at the specified position is an alphabetical
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment