diff options
author | Aurelien Foret <aurelien@archlinux.org> | 2005-03-26 09:00:49 +0000 |
---|---|---|
committer | Aurelien Foret <aurelien@archlinux.org> | 2005-03-26 09:00:49 +0000 |
commit | 10b0e0d9af0e396d30f6fb1f5d321488897746d3 (patch) | |
tree | 54019ca547b4155aba371a5d9c5dd51d92406c1b /lib/libalpm/list.h | |
parent | 3f165e19129f4962231a2f4ce2fb581e8ba1ec9d (diff) | |
download | pacman-10b0e0d9af0e396d30f6fb1f5d321488897746d3.tar.xz |
Backport from pacman 2.9.5
Diffstat (limited to 'lib/libalpm/list.h')
-rw-r--r-- | lib/libalpm/list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/list.h b/lib/libalpm/list.h index fe0d6738..e7c9eb31 100644 --- a/lib/libalpm/list.h +++ b/lib/libalpm/list.h @@ -26,7 +26,7 @@ typedef struct __pmlist_t { void *data; struct __pmlist_t *prev; struct __pmlist_t *next; - struct __pmlist_t *last; + struct __pmlist_t *last; /* Quick access to last item in list */ } pmlist_t; typedef struct __pmlist_t PMList; |