From 5f33956cb9b4726f666d4007ffb6197177860d1e Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Tue, 10 Nov 2015 16:02:02 +0100 Subject: common: mark local symbol static --- src/bin/common/shmfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/common/shmfile.c b/src/bin/common/shmfile.c index 7a51edd..538a314 100644 --- a/src/bin/common/shmfile.c +++ b/src/bin/common/shmfile.c @@ -20,7 +20,7 @@ extern "C" { #endif int shm_fd = -1; -int shm_size = 0; +static int shm_size = 0; void *shm_addr = NULL; char *shmfile = NULL; -- cgit v1.2.1