Module Name:    src
Committed By:   christos
Date:           Thu Nov  7 17:26:13 UTC 2013

Modified Files:
        src/common/dist/zlib: gzio.c

Log Message:
mark variables as used


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/common/dist/zlib/gzio.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/common/dist/zlib/gzio.c
diff -u src/common/dist/zlib/gzio.c:1.3 src/common/dist/zlib/gzio.c:1.4
--- src/common/dist/zlib/gzio.c:1.3	Thu May 19 18:23:12 2011
+++ src/common/dist/zlib/gzio.c	Thu Nov  7 12:26:13 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: gzio.c,v 1.3 2011/05/19 22:23:12 tsutsui Exp $	*/
+/*	$NetBSD: gzio.c,v 1.4 2013/11/07 17:26:13 christos Exp $	*/
 
 /* gzio.c -- IO on .gz files
  * Copyright (C) 1995-2005 Jean-loup Gailly.
@@ -157,6 +157,8 @@ local gzFile gz_open (path, mode, fd)
     if (s->mode == 'w') {
 #ifdef NO_GZCOMPRESS
         err = Z_STREAM_ERROR;
+	__USE(level);
+	__USE(strategy);
 #else
         err = deflateInit2(&(s->stream), level,
                            Z_DEFLATED, -MAX_WBITS, DEF_MEM_LEVEL, strategy);

Reply via email to