From 2752932d1966488c5bcc0c45282b0de5c8bf561e Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Wed, 16 Nov 2011 14:53:34 -0600 Subject: Update alpm_errno_t type to non-enum version Signed-off-by: Dan McGee --- lib/libalpm/sync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c index a80b130f..3817ec84 100644 --- a/lib/libalpm/sync.c +++ b/lib/libalpm/sync.c @@ -423,7 +423,7 @@ int _alpm_sync_prepare(alpm_handle_t *handle, alpm_list_t **data) see if they'd like to ignore them rather than failing the sync */ if(unresolvable != NULL) { int remove_unresolvable = 0; - enum _alpm_errno_t saved_err = handle->pm_errno; + alpm_errno_t saved_err = handle->pm_errno; QUESTION(handle, ALPM_QUESTION_REMOVE_PKGS, unresolvable, NULL, NULL, &remove_unresolvable); if(remove_unresolvable) { -- cgit v1.2.3-24-g4f1b