aboutsummaryrefslogtreecommitdiff
path: root/lzio.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-11-09 15:59:35 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-11-09 15:59:35 -0200
commita7fa7bafc808103cbb8e27a3c80168617bac8a4f (patch)
tree2f87488fa77d88ad695bacf695d90eab96ded076 /lzio.c
parentcde179b36979c58d9380d3c4dd29b61412d13b51 (diff)
downloadlua-a7fa7bafc808103cbb8e27a3c80168617bac8a4f.tar.gz
lua-a7fa7bafc808103cbb8e27a3c80168617bac8a4f.tar.bz2
lua-a7fa7bafc808103cbb8e27a3c80168617bac8a4f.zip
new warnings with option "-W" (gcc)
Diffstat (limited to 'lzio.c')
-rw-r--r--lzio.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lzio.c b/lzio.c
index c59ec559..1216ef91 100644
--- a/lzio.c
+++ b/lzio.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lzio.c,v 1.7 1999/03/05 13:15:50 roberto Exp roberto $ 2** $Id: lzio.c,v 1.8 1999/08/16 20:52:00 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*/
@@ -16,6 +16,7 @@
16/* ----------------------------------------------------- memory buffers --- */ 16/* ----------------------------------------------------- memory buffers --- */
17 17
18static int zmfilbuf (ZIO* z) { 18static int zmfilbuf (ZIO* z) {
19 (void)z; /* to avoid warnings */
19 return EOZ; 20 return EOZ;
20} 21}
21 22