summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2015-11-10 16:02:02 +0100
committerStefan Schmidt <stefan@osg.samsung.com>2015-11-10 16:02:02 +0100
commit5f33956cb9b4726f666d4007ffb6197177860d1e (patch)
treec8d07e974f84b49cc910a5caf76fb7f35241f70e
parent194a4e90a7f2355700ba3f75d05322ecdb85ca65 (diff)
downloadevas_generic_loaders-5f33956cb9b4726f666d4007ffb6197177860d1e.tar.gz
common: mark local symbol static
-rw-r--r--src/bin/common/shmfile.c2
1 files changed, 1 insertions, 1 deletions
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;