changeset 7510:553f26afc900 HEAD

make outofmem_area static
author Diego Liziero <diegoliz@gmail.com>
date Sun, 11 May 2008 14:49:02 +0200
parents 89a0a4e1f918
children f96fd5c97375
files src/lib/data-stack.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib/data-stack.c	Fri May 09 19:04:16 2008 +0300
+++ b/src/lib/data-stack.c	Sun May 11 14:49:02 2008 +0200
@@ -67,7 +67,7 @@
 static bool clean_after_pop = FALSE;
 static bool outofmem = FALSE;
 
-union {
+static union {
 	struct stack_block block;
 	unsigned char data[128];
 } outofmem_area;