diff options
author | Werner Koch <[email protected]> | 2024-08-19 08:31:35 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2024-08-19 08:31:44 +0000 |
commit | 8bef1e28217d316aa79128b2bbc8497ce9f00009 (patch) | |
tree | 6763df30847a82391fe70d2327de09ffb3329e5d /g10/photoid.c | |
parent | doc: Add another example for gpg-mail-tube (diff) | |
download | gnupg-8bef1e28217d316aa79128b2bbc8497ce9f00009.tar.gz gnupg-8bef1e28217d316aa79128b2bbc8497ce9f00009.zip |
gpg: Minor fix when building with --disable-exec
* g10/photoid.c (show_photo): No return for a void function.
--
GnuPG-bug-id: 7256
Diffstat (limited to 'g10/photoid.c')
-rw-r--r-- | g10/photoid.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/g10/photoid.c b/g10/photoid.c index 5b8900f32..88327015d 100644 --- a/g10/photoid.c +++ b/g10/photoid.c @@ -420,7 +420,6 @@ static void show_photo (const char *command, const char *name, const void *image, u32 len) { log_error(_("no remote program execution supported\n")); - return GPG_ERR_GENERAL; } #else /* ! NO_EXEC */ #include "../common/membuf.h" |