]> andersk Git - libyaml.git/blobdiff - src/scanner.c
fix clang -Wlogical-op warnings
[libyaml.git] / src / scanner.c
index cbe5c6fd077ad7fcfee48ad97a0453de594ec9a2..ceee7496a8a68d97eeb44630f4e229d005cfa6e9 100644 (file)
@@ -2860,7 +2860,7 @@ yaml_parser_scan_block_scalar(yaml_parser_t *parser, yaml_token_t *token,
 
     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.
This page took 0.025097 seconds and 4 git commands to generate.