From 39634ee278b3c706a5411d4b4d8cefc6fdbb83d9 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 10 Feb 2025 17:31:22 +0000 Subject: [PATCH] json: Remove superfluous semicolon Signed-off-by: Michael Tremer --- src/pakfire/json.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pakfire/json.h b/src/pakfire/json.h index 6c135941..83bc9058 100644 --- a/src/pakfire/json.h +++ b/src/pakfire/json.h @@ -49,7 +49,7 @@ int pakfire_json_add_array(struct json_object* json, const char* name, struct js int pakfire_json_array_add_string(struct json_object* array, const char* s); int pakfire_json_array_add_stringf(struct json_object* array, const char* format, ...) - __attribute__((format(printf, 2, 3)));; + __attribute__((format(printf, 2, 3))); int pakfire_json_get_string(struct json_object* json, const char* key, const char** value); int pakfire_json_get_int64(struct json_object* json, const char* key, int64_t* value); -- 2.39.5