diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-09-23 07:27:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-23 07:27:30 -0400 |
commit | 02988e95e58a9d6fbf5b62225529b225e4bd540f (patch) | |
tree | f63b612062d9c3d458e2ccedb6b20c31c232114f /include/wlr/util | |
parent | 06ae9e7c9f8811dcda3df8ec72ab75e54ee54b87 (diff) | |
parent | 4809b7b3e44e8e3ce6a5cc38294f5796baec8166 (diff) |
Merge pull request #157 from emersion/include-guards-names
Use more consistent include guard names
Diffstat (limited to 'include/wlr/util')
-rw-r--r-- | include/wlr/util/list.h | 4 | ||||
-rw-r--r-- | include/wlr/util/log.h | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/include/wlr/util/list.h b/include/wlr/util/list.h index 6e746ec4..02039d89 100644 --- a/include/wlr/util/list.h +++ b/include/wlr/util/list.h @@ -1,5 +1,5 @@ -#ifndef _WLR_UTIL_LIST_H -#define _WLR_UTIL_LIST_H +#ifndef WLR_UTIL_LIST_H +#define WLR_UTIL_LIST_H #include <stddef.h> diff --git a/include/wlr/util/log.h b/include/wlr/util/log.h index 2acaa2ed..3de2cacf 100644 --- a/include/wlr/util/log.h +++ b/include/wlr/util/log.h @@ -1,5 +1,6 @@ -#ifndef _WLR_UTIL_LOG_H -#define _WLR_UTIL_LOG_H +#ifndef WLR_UTIL_LOG_H +#define WLR_UTIL_LOG_H + #include <stdbool.h> #include <stdarg.h> #include <string.h> |