summaryrefslogtreecommitdiff
path: root/json_util.c
diff options
context:
space:
mode:
authorPascal Bach <pasci.bach@gmail.com>2013-08-13 18:24:23 +0200
committerPascal Bach <pascal.bach@siemens.com>2013-08-13 18:27:02 +0200
commit20e4708c8a28dabfc6b55e926b0c47f9b454550d (patch)
tree90ad37eea77f704048bf000225961d3dd47e9cbc /json_util.c
parentb3bce4d5943774b59d7fa653da89f48db70d013e (diff)
downloadjson-c-20e4708c8a28dabfc6b55e926b0c47f9b454550d.tar.gz
Update json_util
filename should be passed as const char* to functions json_object_to_file and json_object_to_file
Diffstat (limited to 'json_util.c')
-rw-r--r--json_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/json_util.c b/json_util.c
index cab2f1e..531f9af 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);
}