diff options
author | Eric Engestrom <[email protected]> | 2019-06-22 18:08:08 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-07-31 09:41:05 +0100 |
commit | 745bae40adfdc6c6107cd104dcdc5195e95b0230 (patch) | |
tree | 02a1e39f5fdd297e744a7e05de98b3dcf3560510 /src/gallium/auxiliary/pipe-loader | |
parent | 513e67d2e4844a6a31fab3e3f84eb7aaa142a11f (diff) |
gallium/aux: 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 <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/pipe-loader')
-rw-r--r-- | src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c b/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c index f2541e8691d..c2a3896b8f7 100644 --- a/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c +++ b/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c @@ -277,7 +277,7 @@ fail: static void pipe_loader_sw_release(struct pipe_loader_device **dev) { - MAYBE_UNUSED struct pipe_loader_sw_device *sdev = + UNUSED struct pipe_loader_sw_device *sdev = pipe_loader_sw_device(*dev); #ifndef GALLIUM_STATIC_TARGETS |