diff options
author | Werner Koch <[email protected]> | 2015-11-27 17:10:31 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2015-11-27 17:32:26 +0000 |
commit | 436a154ea85e4dffbde7c3b316fbfca1b066aa2a (patch) | |
tree | 739bfd35c3740f456a6b9e3749f1a95728c0ab8c | |
parent | gpg,w32: Fix a format string error. (diff) | |
download | gnupg-436a154ea85e4dffbde7c3b316fbfca1b066aa2a.tar.gz gnupg-436a154ea85e4dffbde7c3b316fbfca1b066aa2a.zip |
kbx: Include gpg-error prior to mischelp.h.
* kbx/keybox-init.c: Change order of includes.
--
This is to avoid redefintion warnings about GPGRT_ATTR_PRINTF.
Signed-off-by: Werner Koch <[email protected]>
-rw-r--r-- | kbx/keybox-init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kbx/keybox-init.c b/kbx/keybox-init.c index 618966fad..e91911c37 100644 --- a/kbx/keybox-init.c +++ b/kbx/keybox-init.c @@ -24,8 +24,8 @@ #include <unistd.h> #include <assert.h> -#include "../common/mischelp.h" #include "keybox-defs.h" +#include "../common/mischelp.h" static KB_NAME kb_names; |