diff options
author | Brian Paul <[email protected]> | 2014-04-09 19:28:18 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-04-10 07:53:10 -0600 |
commit | 00f31bdd32ee0e2e3ccb4d1c93a44c585b668d6f (patch) | |
tree | bba7d1affced3cf7eafcb3f98238dec7f7641f4b | |
parent | 7fbb8ba4997060f53c345288d8983b61177f0014 (diff) |
mesa: s/FREE/free/ in _mesa_free_errors_data()
Reviewed-by: Jakob Bornecrantz <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
-rw-r--r-- | src/mesa/main/errors.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |