diff options
author | Brian Paul <brianp@vmware.com> | 2016-08-17 08:29:55 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2016-08-26 06:19:51 -0600 |
commit | d221a6545cc0778716f1abf45fd096d6cd5a1b8e (patch) | |
tree | 50dcfe67b0ada8a08bdc14fb4478cfffdb95b639 | |
parent | f92a87a14068dd17a32b41b1586421cef6eaa37f (diff) | |
download | external_mesa3d-d221a6545cc0778716f1abf45fd096d6cd5a1b8e.zip external_mesa3d-d221a6545cc0778716f1abf45fd096d6cd5a1b8e.tar.gz external_mesa3d-d221a6545cc0778716f1abf45fd096d6cd5a1b8e.tar.bz2 |
gallium/hud: move signo declaration inside PIPE_OS_UNIX block
To silence unused var warning with MSVC, MinGW.
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
-rw-r--r-- | src/gallium/auxiliary/hud/hud_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/hud/hud_context.c b/src/gallium/auxiliary/hud/hud_context.c index 3453bda..f1a1cee 100644 --- a/src/gallium/auxiliary/hud/hud_context.c +++ b/src/gallium/auxiliary/hud/hud_context.c @@ -1242,8 +1242,8 @@ hud_create(struct pipe_context *pipe, struct cso_context *cso) struct pipe_sampler_view view_templ; unsigned i; const char *env = debug_get_option("GALLIUM_HUD", NULL); - unsigned signo = debug_get_num_option("GALLIUM_HUD_TOGGLE_SIGNAL", 0); #ifdef PIPE_OS_UNIX + unsigned signo = debug_get_num_option("GALLIUM_HUD_TOGGLE_SIGNAL", 0); static boolean sig_handled = FALSE; struct sigaction action = {}; #endif |