summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/.clang-tidy1
-rw-r--r--src/sratom.c2
2 files changed, 1 insertions, 2 deletions
diff --git a/src/.clang-tidy b/src/.clang-tidy
index 1b4b226..c50cd8a 100644
--- a/src/.clang-tidy
+++ b/src/.clang-tidy
@@ -5,7 +5,6 @@ Checks: >
-*-magic-numbers,
-*-narrowing-conversions,
-bugprone-easily-swappable-parameters,
- -bugprone-suspicious-string-compare,
-cert-err33-c,
-cert-err34-c,
-clang-analyzer-unix.Malloc,
diff --git a/src/sratom.c b/src/sratom.c
index fd984d0..2222dd4 100644
--- a/src/sratom.c
+++ b/src/sratom.c
@@ -282,7 +282,7 @@ sratom_write(Sratom* sratom,
object = serd_node_new_file_uri(str, NULL, NULL, true);
} else {
if (!sratom->base_uri.buf ||
- strncmp((const char*)sratom->base_uri.buf, "file://", 7)) {
+ !!strncmp((const char*)sratom->base_uri.buf, "file://", 7)) {
fprintf(stderr, "warning: Relative path but base is not a file URI.\n");
fprintf(stderr, "warning: Writing ambiguous atom:Path literal.\n");
object = serd_node_from_string(SERD_LITERAL, str);