From 48d9c38d1e976b4775e41166a803cb8a082059b2 Mon Sep 17 00:00:00 2001 From: axel Date: Wed, 10 May 2006 02:52:07 +1000 Subject: [PATCH] Fixed use of improper storage type for variable darcs-hash:20060509165207-ac50b-48561332ab938fe7972bbf07f32ac1f92322d316.gz --- common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.c b/common.c index d4d5827cc..131e5ce02 100644 --- a/common.c +++ b/common.c @@ -838,7 +838,7 @@ wchar_t *unescape( const wchar_t * orig, int unescape_special ) int base=16; int byte = 0; - int max_val = 127; + wchar_t max_val = 127; switch( in[in_pos] ) {