From ea58bae0f4b142d118880a3eb71168604c513b07 Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Mon, 8 Oct 2012 12:34:22 -0700 Subject: [PATCH] mymemory: make DontFree() static --- mymemory.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mymemory.cc b/mymemory.cc index d281330b..759bdccd 100644 --- a/mymemory.cc +++ b/mymemory.cc @@ -154,7 +154,7 @@ void * HandleEarlyAllocationRequest(size_t sz) } /** Check whether this is bootstrapped memory that we should not free */ -bool DontFree(void *ptr) +static bool DontFree(void *ptr) { return (ptr >= (&bootstrapmemory[0]) && ptr < (&bootstrapmemory[BOOTSTRAPBYTES])); } -- 2.34.1