diff options
author | Allan McRae <allan@archlinux.org> | 2011-07-01 18:01:39 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2011-07-01 18:01:39 +0200 |
commit | bd88a8d5511c24db55dd2a5c04161918571dbfbd (patch) | |
tree | aadcae00adb125de60cbaff68c8b44f8c7fb04c1 /lib/libalpm/alpm.h | |
parent | 495ba26e63ec5cb6b8def29f4e22ea7c444348d8 (diff) | |
download | pacman-bd88a8d5511c24db55dd2a5c04161918571dbfbd.tar.gz pacman-bd88a8d5511c24db55dd2a5c04161918571dbfbd.tar.xz |
Prefix alpm_transprog_t members with ALPM
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/alpm.h')
-rw-r--r-- | lib/libalpm/alpm.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index c9b2c850..b891e453 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -860,12 +860,12 @@ typedef enum _alpm_transconv_t { /** Transaction Progress */ typedef enum _alpm_transprog_t { - PM_TRANS_PROGRESS_ADD_START, - PM_TRANS_PROGRESS_UPGRADE_START, - PM_TRANS_PROGRESS_REMOVE_START, - PM_TRANS_PROGRESS_CONFLICTS_START, - PM_TRANS_PROGRESS_DISKSPACE_START, - PM_TRANS_PROGRESS_INTEGRITY_START, + ALPM_TRANS_PROGRESS_ADD_START, + ALPM_TRANS_PROGRESS_UPGRADE_START, + ALPM_TRANS_PROGRESS_REMOVE_START, + ALPM_TRANS_PROGRESS_CONFLICTS_START, + ALPM_TRANS_PROGRESS_DISKSPACE_START, + ALPM_TRANS_PROGRESS_INTEGRITY_START, } alpm_transprog_t; /** Transaction Event callback */ |