diff options
Diffstat (limited to 'src/plist.h')
-rw-r--r-- | src/plist.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plist.h b/src/plist.h index 9328d27..f648fcc 100644 --- a/src/plist.h +++ b/src/plist.h @@ -31,8 +31,8 @@ * among the entries. */ -#ifndef _PLIST_H -#define _PLIST_H +#ifndef PLIST_H +#define PLIST_H #include <stdbool.h> @@ -293,4 +293,4 @@ for (pnode = plist_last(plist), tmp = plist_prev(pnode); \ #define plist_for_each_entry_reverse_safe(plist, entry, tmp, member) \ list_for_each_entry_reverse_safe(&(plist)->list, entry, tmp, member.node) -#endif /* _PLIST_H */ +#endif /* PLIST_H */ |