summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/texstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/main/texstate.h')
-rw-r--r--src/mesa/main/texstate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texstate.h b/src/mesa/main/texstate.h
index abc07eafb4e..ce7b5d7f2d1 100644
--- a/src/mesa/main/texstate.h
+++ b/src/mesa/main/texstate.h
@@ -41,7 +41,7 @@
static inline struct gl_texture_unit *
_mesa_get_tex_unit(struct gl_context *ctx, GLuint unit)
{
- ASSERT(unit < Elements(ctx->Texture.Unit));
+ assert(unit < Elements(ctx->Texture.Unit));
return &(ctx->Texture.Unit[unit]);
}