From 513e67d2e4844a6a31fab3e3f84eb7aaa142a11f Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Sat, 22 Jun 2019 18:05:14 +0100 Subject: [PATCH] mesa: replace MAYBE_UNUSED with UNUSED MAYBE_UNUSED is going away, so let's replace legitimate uses of it with UNUSED, which the former aliased to so far anyway. Signed-off-by: Eric Engestrom Reviewed-by: Matt Turner --- src/mesa/main/texstore.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/main/texstore.h b/src/mesa/main/texstore.h index 2fef7ba7d7d..9d735d16c70 100644 --- a/src/mesa/main/texstore.h +++ b/src/mesa/main/texstore.h @@ -60,8 +60,8 @@ struct gl_texture_image; */ #define TEXSTORE_PARAMS \ struct gl_context *ctx, GLuint dims, \ - MAYBE_UNUSED GLenum baseInternalFormat, \ - MAYBE_UNUSED mesa_format dstFormat, \ + UNUSED GLenum baseInternalFormat, \ + UNUSED mesa_format dstFormat, \ GLint dstRowStride, \ GLubyte **dstSlices, \ GLint srcWidth, GLint srcHeight, GLint srcDepth, \ -- 2.30.2