summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/alpm.h
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2011-06-28 05:56:46 +0200
committerAllan McRae <allan@archlinux.org>2011-06-28 05:56:46 +0200
commit0a80cf31cfe960b2c62e734aef6e3c662469e917 (patch)
tree6d8a33b4c375f80c60559c49d9e7f6c0ecca7f04 /lib/libalpm/alpm.h
parent7ce674491bd854610855fe83482eda6b18273fa0 (diff)
downloadpacman-0a80cf31cfe960b2c62e734aef6e3c662469e917.tar.gz
pacman-0a80cf31cfe960b2c62e734aef6e3c662469e917.tar.xz
Rename pmdepmod_t to alpm_depmod_t
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/alpm.h')
-rw-r--r--lib/libalpm/alpm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h
index 00d21563..25f7f6db 100644
--- a/lib/libalpm/alpm.h
+++ b/lib/libalpm/alpm.h
@@ -61,7 +61,7 @@ typedef enum _alpm_pkgreason_t {
} alpm_pkgreason_t;
/** Types of version constraints in dependency specs. */
-typedef enum _pmdepmod_t {
+typedef enum _alpm_depmod_t {
/** No version constraint */
PM_DEP_MOD_ANY = 1,
/** Test version equality (package=x.y.z) */
@@ -74,7 +74,7 @@ typedef enum _pmdepmod_t {
PM_DEP_MOD_GT,
/** Test for less than some version (package<x.y.z) */
PM_DEP_MOD_LT
-} pmdepmod_t;
+} alpm_depmod_t;
/**
* File conflict type.
@@ -110,7 +110,7 @@ typedef struct _pmdepend_t {
char *name;
char *version;
unsigned long name_hash;
- pmdepmod_t mod;
+ alpm_depmod_t mod;
} pmdepend_t;
/** Missing dependency */