aboutsummaryrefslogtreecommitdiffstats
path: root/src/node.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/node.c')
-rw-r--r--src/node.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/node.c b/src/node.c
index 5a84237d..ea9168bd 100644
--- a/src/node.c
+++ b/src/node.c
@@ -191,7 +191,10 @@ serd_node_new_file_uri(const uint8_t* path,
serd_chunk_sink(path + i, 1, &chunk);
} else {
char escape_str[4] = { '%', 0, 0, 0 };
- snprintf(escape_str + 1, sizeof(escape_str) - 1, "%X", path[i]);
+ snprintf(escape_str + 1,
+ sizeof(escape_str) - 1,
+ "%X",
+ (unsigned)path[i]);
serd_chunk_sink(escape_str, 3, &chunk);
}
}