diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-11-09 15:59:35 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-11-09 15:59:35 -0200 |
commit | a7fa7bafc808103cbb8e27a3c80168617bac8a4f (patch) | |
tree | 2f87488fa77d88ad695bacf695d90eab96ded076 /lzio.c | |
parent | cde179b36979c58d9380d3c4dd29b61412d13b51 (diff) | |
download | lua-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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 | ||
18 | static int zmfilbuf (ZIO* z) { | 18 | static int zmfilbuf (ZIO* z) { |
19 | (void)z; /* to avoid warnings */ | ||
19 | return EOZ; | 20 | return EOZ; |
20 | } | 21 | } |
21 | 22 | ||