util: rename include guard to avoid clash
authorEric Engestrom <eric.engestrom@imgtec.com>
Wed, 6 Sep 2017 14:23:52 +0000 (14:23 +0000)
committerEric Engestrom <eric@engestrom.ch>
Thu, 7 Sep 2017 07:54:44 +0000 (08:54 +0100)
src/mesa/main/debug.h uses the same include guard.

Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
src/util/debug.h

index 11a8561eb57d1d61af672aac9a3f48de5a10cdb4..75ebc2ebffba9f64f6c4a9fdb8a3ee6698ea5729 100644 (file)
@@ -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 */