diff options
Diffstat (limited to 'gpgme/keylist.c')
-rw-r--r-- | gpgme/keylist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gpgme/keylist.c b/gpgme/keylist.c index 65bded37..b9907a47 100644 --- a/gpgme/keylist.c +++ b/gpgme/keylist.c @@ -466,7 +466,7 @@ gpgme_op_keylist_next (GpgmeCtx ctx, GpgmeKey *r_key) *r_key = NULL; if (!ctx) return mk_error (Invalid_Value); - if (!ctx->pending ) + if (!ctx->pending) return mk_error (No_Request); if (ctx->out_of_core) return mk_error (Out_Of_Core); @@ -506,7 +506,7 @@ gpgme_op_keylist_end (GpgmeCtx ctx) { if (!ctx) return mk_error (Invalid_Value); - if (!ctx->pending ) + if (!ctx->pending) return mk_error (No_Request); if (ctx->out_of_core) return mk_error (Out_Of_Core); |