summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/heap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/heap.c b/src/heap.c
index 0e451a4..3ab9212 100644
--- a/src/heap.c
+++ b/src/heap.c
@@ -111,7 +111,7 @@ malloc_shared_memory (size_t size)
void *ptr;
char buffer[32];
- static char *shared_file = "/tmp/tinyproxy.shared.XXXXXX";
+ static const char *shared_file = "/tmp/tinyproxy.shared.XXXXXX";
assert (size > 0);