From: Eric Engestrom Date: Wed, 6 Sep 2017 14:23:52 +0000 (+0000) Subject: util: rename include guard to avoid clash X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=56f16c4fbbb2162a3c820db54800bc6299a62ca6;p=mesa.git util: rename include guard to avoid clash src/mesa/main/debug.h uses the same include guard. Signed-off-by: Eric Engestrom Reviewed-by: Timothy Arceri Reviewed-by: Nicolai Hähnle --- 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 #include @@ -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 */