From 01c35a9bfb20e7e0e9c31f2ac70269aec5461465 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Tue, 6 Oct 2020 16:17:57 +0200 Subject: [PATCH] style --- client/deps/jansson/pack_unpack.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/client/deps/jansson/pack_unpack.c b/client/deps/jansson/pack_unpack.c index 279499ebd..5ee4a8be9 100644 --- a/client/deps/jansson/pack_unpack.c +++ b/client/deps/jansson/pack_unpack.c @@ -740,8 +740,12 @@ static int unpack(scanner_t *s, json_t *root, va_list *ap) { case 'b': if (root && !json_is_boolean(root)) { - set_error(s, "", json_error_wrong_type, "Expected true or false, got %s", - type_name(root)); + set_error(s, + "", + json_error_wrong_type, + "Expected true or false, got %s", + type_name(root) + ); return -1; }