From 00f31bdd32ee0e2e3ccb4d1c93a44c585b668d6f Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 9 Apr 2014 19:28:18 -0600 Subject: [PATCH] mesa: s/FREE/free/ in _mesa_free_errors_data() Reviewed-by: Jakob Bornecrantz Reviewed-by: Kenneth Graunke --- src/mesa/main/errors.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/errors.c b/src/mesa/main/errors.c index 9151718eab6..d80fda0dbd2 100644 --- a/src/mesa/main/errors.c +++ b/src/mesa/main/errors.c @@ -980,7 +980,7 @@ _mesa_free_errors_data(struct gl_context *ctx) for (i = 0; i <= ctx->Debug->GroupStackDepth; i++) { free_errors_data(ctx, i); } - FREE(ctx->Debug); + free(ctx->Debug); /* set to NULL just in case it is used before context is completely gone. */ ctx->Debug = NULL; } -- 2.30.2