From 716978f20db7f8f9088acdaec998045f0d3d52af Mon Sep 17 00:00:00 2001 From: BonsaY Date: Mon, 21 Mar 2022 21:10:45 +0100 Subject: [PATCH] Code style removed unneeded double-quotes this way, it complies with the other #error usages --- json_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/json_object.c b/json_object.c index df0187e..a8a2222 100644 --- a/json_object.c +++ b/json_object.c @@ -38,7 +38,7 @@ #define is_plain_digit(c) ((c) >= '0' && (c) <= '9') #if SIZEOF_LONG_LONG != SIZEOF_INT64_T -#error "The long long type isn't 64-bits" +#error The long long type isn't 64-bits #endif #ifndef SSIZE_T_MAX -- 2.50.0