1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-12-22 10:19:57 +01:00

gpg: Minor fix when building with --disable-exec

* g10/photoid.c (show_photo): No return for a void function.
--

GnuPG-bug-id: 7256
This commit is contained in:
Werner Koch 2024-08-19 10:31:35 +02:00
parent 1766efbe5e
commit 8bef1e2821
No known key found for this signature in database
GPG Key ID: E3FDFF218E45B72B

View File

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