From bce495e56f3d5d909bbc2a116cf5776c3621cd89 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Fri, 10 Jan 2014 14:32:38 +1000 Subject: Consistently use #ifdef Fix the occurances of #if to be #ifdef for consistency. --- lib/libalpm/sync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libalpm/sync.c') diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c index 4ae01ac0..945fdb0e 100644 --- a/lib/libalpm/sync.c +++ b/lib/libalpm/sync.c @@ -1221,7 +1221,7 @@ int _alpm_sync_commit(alpm_handle_t *handle, alpm_list_t **data) return -1; } -#if HAVE_LIBGPGME +#ifdef HAVE_LIBGPGME /* make sure all required signatures are in keyring */ if(check_keyring(handle)) { return -1; -- cgit v1.2.3-24-g4f1b