From 20e4708c8a28dabfc6b55e926b0c47f9b454550d Mon Sep 17 00:00:00 2001 From: Pascal Bach Date: Tue, 13 Aug 2013 18:24:23 +0200 Subject: [PATCH] Update json_util filename should be passed as const char* to functions json_object_to_file and json_object_to_file --- json_util.c | 4 ++-- json_util.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/json_util.c b/json_util.c index cab2f1ec..531f9afb 100644 --- a/json_util.c +++ b/json_util.c @@ -99,7 +99,7 @@ struct json_object* json_object_from_file(const char *filename) /* extended "format and write to file" function */ -int json_object_to_file_ext(char *filename, struct json_object *obj, int flags) +int json_object_to_file_ext(const char *filename, struct json_object *obj, int flags) { const char *json_str; int fd, ret; @@ -141,7 +141,7 @@ int json_object_to_file_ext(char *filename, struct json_object *obj, int flags) // backwards compatible "format and write to file" function -int json_object_to_file(char *filename, struct json_object *obj) +int json_object_to_file(const char *filename, struct json_object *obj) { return json_object_to_file_ext(filename, obj, JSON_C_TO_STRING_PLAIN); } diff --git a/json_util.h b/json_util.h index b9a69c8b..1005e58c 100644 --- a/json_util.h +++ b/json_util.h @@ -22,8 +22,8 @@ extern "C" { /* utility functions */ extern struct json_object* json_object_from_file(const char *filename); -extern int json_object_to_file(char *filename, struct json_object *obj); -extern int json_object_to_file_ext(char *filename, struct json_object *obj, int flags); +extern int json_object_to_file(const char *filename, struct json_object *obj); +extern int json_object_to_file_ext(const char *filename, struct json_object *obj, int flags); extern int json_parse_int64(const char *buf, int64_t *retval); extern int json_parse_double(const char *buf, double *retval); -- 2.39.5