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,..
This commit is contained in:
Andre Heinecke 2018-05-24 13:16:55 +02:00
parent 45036c3c4c
commit b344933e4c
No known key found for this signature in database
GPG Key ID: 2978E9D40CBABA5C

View File

@ -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;