diff options
Diffstat (limited to 'src/json/json.c')
-rw-r--r-- | src/json/json.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/json/json.c b/src/json/json.c index 09cc757c9..266857198 100644 --- a/src/json/json.c +++ b/src/json/json.c @@ -651,7 +651,8 @@ TALER_JSON_get_error_hint (const json_t *json) GNUNET_break_op (0); return NULL; } - jc = json_object_get (json, "hint"); + jc = json_object_get (json, + "hint"); if (NULL == jc) return NULL; /* no hint, is allowed */ if (! json_is_string (jc)) |