libsepol: declare file local variable static

Clang issues:

    module_to_cil.c:65:7: warning: no previous extern declaration for non-static variable 'out_file' [-Wmissing-variable-declarations]
    FILE *out_file;
          ^

Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
Acked-by: James Carter <jwcart2@gmail.com>
This commit is contained in:
Christian Göttsche 2021-06-08 17:59:11 +02:00 committed by James Carter
parent 4fbc018a27
commit 4572bf254a
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@
# define UNUSED(x) UNUSED_ ## x
#endif
FILE *out_file;
static FILE *out_file;
#define STACK_SIZE 16
#define DEFAULT_LEVEL "systemlow"