aboutsummaryrefslogtreecommitdiff
path: root/lzio.c
diff options
context:
space:
mode:
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