summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/list.h
diff options
context:
space:
mode:
authorAurelien Foret <aurelien@archlinux.org>2006-03-02 20:02:35 +0100
committerAurelien Foret <aurelien@archlinux.org>2006-03-02 20:02:35 +0100
commit3eebe8fc2b641737c0581066034f29ce573900d5 (patch)
tree786427248226551938abe1896de30cd3bf7cde57 /lib/libalpm/list.h
parent79f4b5acf407e6fdf054de323e11c9b5a4f97580 (diff)
downloadpacman-3eebe8fc2b641737c0581066034f29ce573900d5.tar.gz
pacman-3eebe8fc2b641737c0581066034f29ce573900d5.tar.xz
code cleanup
Diffstat (limited to 'lib/libalpm/list.h')
-rw-r--r--lib/libalpm/list.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libalpm/list.h b/lib/libalpm/list.h
index 7cfc886f..74da9a00 100644
--- a/lib/libalpm/list.h
+++ b/lib/libalpm/list.h
@@ -35,9 +35,9 @@ typedef struct __pmlist_t PMList;
#define FREELIST(p) _FREELIST(p, free)
#define FREELISTPTR(p) _FREELIST(p, NULL)
-typedef void (*_alpm_fn_free) (void *);
+typedef void (*_alpm_fn_free)(void *);
/* Sort comparison callback function declaration */
-typedef int (*_alpm_fn_cmp) (const void *, const void *);
+typedef int (*_alpm_fn_cmp)(const void *, const void *);
PMList *_alpm_list_new(void);
void _alpm_list_free(PMList *list, _alpm_fn_free fn);