summaryrefslogtreecommitdiffstats
path: root/misc/json.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/json.c')
-rw-r--r--misc/json.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/json.c b/misc/json.c
index 8252511408..b0be7462df 100644
--- a/misc/json.c
+++ b/misc/json.c
@@ -218,11 +218,11 @@ int json_parse(void *ta_parent, struct mpv_node *dst, char **src, int max_depth)
#define APPEND(b, s) bstr_xappend(NULL, (b), bstr0(s))
-static void write_json_str(bstr *b, char *str)
+static void write_json_str(bstr *b, unsigned char *str)
{
APPEND(b, "\"");
while (1) {
- char *cur = str;
+ unsigned char *cur = str;
while (cur[0] && cur[0] >= 32 && cur[0] != '"' && cur[0] != '\\')
cur++;
if (!cur[0])