From b344933e4cb17f2f26c4ed355217428bda8b8c40 Mon Sep 17 00:00:00 2001 From: Andre Heinecke Date: Thu, 24 May 2018 13:16:55 +0200 Subject: [PATCH] json: Fix invalid function call * src/gpgme-json.c (add_signatures_to_object): Fix call to xjson_CreateArray. -- That is what happens if you edit code while reviewing changes, without testing it again,.. --- src/gpgme-json.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gpgme-json.c b/src/gpgme-json.c index 4f8e0afe..f1a857d4 100644 --- a/src/gpgme-json.c +++ b/src/gpgme-json.c @@ -714,7 +714,7 @@ leave: static gpg_error_t add_signatures_to_object (cjson_t result, gpgme_signature_t signatures) { - cjson_t response = xJSON_CreateArray (); + cjson_t response = xjson_CreateArray (); gpg_error_t err = 0; gpgme_signature_t sig;