aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2009-12-02 09:49:56 +0000
committerWerner Koch <[email protected]>2009-12-02 09:49:56 +0000
commit2cd1218b9389dadba56d3a2f2ecc170f1b9e6b5f (patch)
tree57ea768c767a2fe922c1568f593707c25b3f5917
parentAdd flags to the getauditlog command. (diff)
downloadgpgme-2cd1218b9389dadba56d3a2f2ecc170f1b9e6b5f.tar.gz
gpgme-2cd1218b9389dadba56d3a2f2ecc170f1b9e6b5f.zip
Small portability fix
-rw-r--r--src/ChangeLog5
-rw-r--r--src/gpgconf.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d3e77fcb..ca931a55 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+2009-12-02 Werner Koch <[email protected]>
+
+ * gpgconf.c (gpgme_conf_arg_release): No return in a function
+ returning void. Reported by Wyllys Ingersoll.
+
2009-12-01 Werner Koch <[email protected]>
* gpgme-tool.c (cmd_getauditlog): Add flag --html.
diff --git a/src/gpgconf.c b/src/gpgconf.c
index 9fa2ce9e..8fdf68ee 100644
--- a/src/gpgconf.c
+++ b/src/gpgconf.c
@@ -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
}