Small portability fix

This commit is contained in:
Werner Koch 2009-12-02 09:49:56 +00:00
parent c2ee84a87a
commit 2cd1218b93
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-12-02 Werner Koch <wk@g10code.com>
* gpgconf.c (gpgme_conf_arg_release): No return in a function
returning void. Reported by Wyllys Ingersoll.
2009-12-01 Werner Koch <wk@g10code.com>
* gpgme-tool.c (cmd_getauditlog): Add flag --html.

View File

@ -59,7 +59,7 @@ void
gpgme_conf_arg_release (gpgme_conf_arg_t arg, gpgme_conf_type_t type)
{
#ifdef ENABLE_GPGCONF
return _gpgme_conf_arg_release (arg, type);
_gpgme_conf_arg_release (arg, type);
#endif
}