diff options
author | Brian Paul <[email protected]> | 2016-03-04 13:03:55 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2016-03-05 09:20:23 -0700 |
commit | cbca6964e2dabbb9d74ae24ebb67f189132cbaae (patch) | |
tree | d1cd8eefec9fda7663c48f10e80b68469150b457 /src/gallium/auxiliary/util/u_debug_refcnt.c | |
parent | fb0abedce7b1aef08d440065507a9353d12b0122 (diff) |
gallium/util: make stream variable static in u_debug_refcnt.c
Reviewed-by: Eduardo Lima Mitev <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/util/u_debug_refcnt.c')
-rw-r--r-- | src/gallium/auxiliary/util/u_debug_refcnt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_debug_refcnt.c b/src/gallium/auxiliary/util/u_debug_refcnt.c index a23f1917852..f486492b3cd 100644 --- a/src/gallium/auxiliary/util/u_debug_refcnt.c +++ b/src/gallium/auxiliary/util/u_debug_refcnt.c @@ -42,7 +42,7 @@ int debug_refcnt_state; -FILE *stream; +static FILE *stream; /* TODO: maybe move this serial machinery to a stand-alone module and * expose it? |