diff options
Diffstat (limited to 'src/writer.c')
-rw-r--r-- | src/writer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/writer.c b/src/writer.c index 3c3bbb48..75d61bc8 100644 --- a/src/writer.c +++ b/src/writer.c @@ -669,7 +669,7 @@ serd_writer_write_statement(SerdWriter* writer, } #define TRY(write_result) \ - if (!write_result) { \ + if (!(write_result)) { \ return SERD_ERR_UNKNOWN; \ } |