diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2006-11-29 10:37:04 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2006-11-29 10:37:04 +0000 |
commit | 9a614deb29cae792e0ba40093a55d164ccee7a5d (patch) | |
tree | 0ebac3a6c6a33401dd4416a8c6c7993892e5dcb1 /sys/lib | |
parent | 92ff196b0adace19047e9a3eae5ed26f085124a8 (diff) |
make it compile w/ debug defined; miod@ ok
Diffstat (limited to 'sys/lib')
-rw-r--r-- | sys/lib/libz/zutil.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libz/zutil.h b/sys/lib/libz/zutil.h index 654b52c8962..9dd08a06701 100644 --- a/sys/lib/libz/zutil.h +++ b/sys/lib/libz/zutil.h @@ -1,4 +1,4 @@ -/* $OpenBSD: zutil.h,v 1.16 2005/07/20 15:56:46 millert Exp $ */ +/* $OpenBSD: zutil.h,v 1.17 2006/11/29 10:37:03 mickey Exp $ */ /* zutil.h -- internal interface and configuration of the compression library * Copyright (C) 1995-2005 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h @@ -242,7 +242,7 @@ extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */ #endif /* Diagnostic functions */ -#ifdef DEBUG +#ifdef DEBUG_LIBZ # include <stdio.h> extern int z_verbose; extern void z_error OF((char *m)); |