1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-11-10 21:38:50 +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 1af3c09831
commit c884e22140
No known key found for this signature in database
GPG Key ID: E3FDFF218E45B72B

View File

@ -425,7 +425,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"