aboutsummaryrefslogtreecommitdiff
path: root/lzio.c
diff options
context:
space:
mode:
Diffstat (limited to 'lzio.c')
-rw-r--r--lzio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lzio.c b/lzio.c
index a2720333..c9011c09 100644
--- a/lzio.c
+++ b/lzio.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lzio.c,v 1.32 2011/02/17 17:34:16 roberto Exp roberto $ 2** $Id: lzio.c,v 1.33 2011/02/23 13:13:10 roberto Exp roberto $
3** a generic input stream interface 3** a generic input stream interface
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -29,7 +29,7 @@ int luaZ_fill (ZIO *z) {
29 return EOZ; 29 return EOZ;
30 z->n = size - 1; /* discount char being returned */ 30 z->n = size - 1; /* discount char being returned */
31 z->p = buff; 31 z->p = buff;
32 return char2int(*(z->p++)); 32 return cast_uchar(*(z->p++));
33} 33}
34 34
35 35