Module: Mesa Branch: master Commit: ddf0e3930fc7b52ff6a172a5d23eec7d24ee42fc URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ddf0e3930fc7b52ff6a172a5d23eec7d24ee42fc
Author: Chia-I Wu <[email protected]> Date: Thu May 2 13:46:21 2013 +0800 util/prim: fix the name of the include guard It should be U_PRIM_H, not U_BLIT_H. Signed-off-by: Chia-I Wu <[email protected]> Acked-by: Zack Rusin <[email protected]> --- src/gallium/auxiliary/util/u_prim.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/auxiliary/util/u_prim.h b/src/gallium/auxiliary/util/u_prim.h index 7948dae..7415e76 100644 --- a/src/gallium/auxiliary/util/u_prim.h +++ b/src/gallium/auxiliary/util/u_prim.h @@ -26,8 +26,8 @@ **************************************************************************/ -#ifndef U_BLIT_H -#define U_BLIT_H +#ifndef U_PRIM_H +#define U_PRIM_H #include "pipe/p_defines.h" _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
