From 99e95d975c0ba97cf0d7301a75101b0fdb17512f Mon Sep 17 00:00:00 2001 From: Jakub Zelenka Date: Tue, 22 May 2018 17:24:08 +0100 Subject: [PATCH] Fix CS --- gnupg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnupg.c b/gnupg.c index e918096..4730855 100644 --- a/gnupg.c +++ b/gnupg.c @@ -1673,7 +1673,7 @@ PHP_FUNCTION(gnupg_import) GNUPG_ERR("could not create in-data buffer"); return; } - if (!PHP_GNUPG_DO(gpgme_op_import(PHPC_THIS->ctx,in))) { + if (!PHP_GNUPG_DO(gpgme_op_import(PHPC_THIS->ctx, in))) { GNUPG_ERR("import failed"); gpgme_data_release(in); return; @@ -1728,7 +1728,7 @@ PHP_FUNCTION(gnupg_deletekey) GNUPG_ERR("get_key failed"); return; } - if (!PHP_GNUPG_DO(gpgme_op_delete(PHPC_THIS->ctx,gpgme_key,allow_secret))) { + if (!PHP_GNUPG_DO(gpgme_op_delete(PHPC_THIS->ctx, gpgme_key, allow_secret))) { GNUPG_ERR("delete failed"); RETVAL_FALSE; } else {