From: Brian Paul Date: Thu, 10 Apr 2014 01:28:18 +0000 (-0600) Subject: mesa: s/FREE/free/ in _mesa_free_errors_data() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=00f31bdd32ee0e2e3ccb4d1c93a44c585b668d6f;p=mesa.git mesa: s/FREE/free/ in _mesa_free_errors_data() Reviewed-by: Jakob Bornecrantz Reviewed-by: Kenneth Graunke --- 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; }