summaryrefslogtreecommitdiff
path: root/lib/libalpm/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libalpm/list.h')
-rw-r--r--lib/libalpm/list.h2
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;