summaryrefslogtreecommitdiff
path: root/src/list.h
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@herrb.eu>2024-05-05 10:59:11 +0200
committerMatthieu Herrb <matthieu@herrb.eu>2024-05-05 10:59:11 +0200
commited85f3d22352c8e469ed1e386af3926b4d63efcd (patch)
tree2162ff552f17fdd9f6c6eba479fa1f2498f99d19 /src/list.h
parent1e866201f1ccf8fa3bb22c6f5fa723b26c86dbe1 (diff)
parent79b0987e63daff97ce9ee1dce883df13668a80c6 (diff)
Merge remote-tracking branch 'origin/master' into obsd
Diffstat (limited to 'src/list.h')
-rw-r--r--src/list.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/list.h b/src/list.h
index d9a4acd..bc9c16c 100644
--- a/src/list.h
+++ b/src/list.h
@@ -57,8 +57,8 @@ in this Software without prior written authorization from The Open Group.
*
**********************************************************************/
-#ifndef _LIST_
-#define _LIST_
+#ifndef LIST_H
+#define LIST_H
#include <X11/Xlib.h>
#include <X11/Xutil.h>
@@ -70,9 +70,9 @@ extern void AddToList(name_list ** list_head, char *name, char *ptr);
extern void FreeList(name_list ** list);
extern int GetColorFromList(name_list * list_head, const char *name,
- XClassHint *class, Pixel *ptr);
+ XClassHint *xclass, Pixel *ptr);
extern char *LookInList(name_list * list_head, const char *name,
- XClassHint *class);
+ XClassHint *xclass);
extern char *LookInNameList(name_list * list_head, const char *name);
-#endif /* _LIST_ */
+#endif /* LIST_H */