summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2017-09-06 14:23:52 +0000
committerEric Engestrom <[email protected]>2017-09-07 08:54:44 +0100
commit56f16c4fbbb2162a3c820db54800bc6299a62ca6 (patch)
treebd1ac2c38b13e5ca2fb66c8b30054e2c409dcb47 /src/util
parent6d9d6071ee961acc82543b321764a0ffec8cd39a (diff)
util: rename include guard to avoid clash
src/mesa/main/debug.h uses the same include guard. Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Timothy Arceri <[email protected]> Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/util')
-rw-r--r--src/util/debug.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/debug.h b/src/util/debug.h
index 11a8561eb57..75ebc2ebffb 100644
--- a/src/util/debug.h
+++ b/src/util/debug.h
@@ -21,8 +21,8 @@
* IN THE SOFTWARE.
*/
-#ifndef _DEBUG_H
-#define _DEBUG_H
+#ifndef _UTIL_DEBUG_H
+#define _UTIL_DEBUG_H
#include <stdint.h>
#include <stdbool.h>
@@ -46,4 +46,4 @@ env_var_as_boolean(const char *var_name, bool default_value);
} /* extern C */
#endif
-#endif /* _DEBUG_H */
+#endif /* _UTIL_DEBUG_H */