aboutsummaryrefslogtreecommitdiff
path: root/zutil.h
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2012-02-12 14:11:48 -0800
committerMark Adler <madler@alumni.caltech.edu>2012-02-12 14:20:33 -0800
commit94acb3c1a0fbd14482224d6af3699ddb9e163510 (patch)
tree30d1123bc8280cae5bfb2a5301eb8201587ff714 /zutil.h
parent75143f819f14428f114ef69980af69071d65cbf9 (diff)
downloadzlib-94acb3c1a0fbd14482224d6af3699ddb9e163510.tar.gz
zlib-94acb3c1a0fbd14482224d6af3699ddb9e163510.tar.bz2
zlib-94acb3c1a0fbd14482224d6af3699ddb9e163510.zip
zlib 1.2.6.1v1.2.6.1
Diffstat (limited to 'zutil.h')
-rw-r--r--zutil.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zutil.h b/zutil.h
index 2f4d14d..69d83ed 100644
--- a/zutil.h
+++ b/zutil.h
@@ -1,5 +1,5 @@
1/* zutil.h -- internal interface and configuration of the compression library 1/* zutil.h -- internal interface and configuration of the compression library
2 * Copyright (C) 1995-2011 Jean-loup Gailly. 2 * Copyright (C) 1995-2012 Jean-loup Gailly.
3 * For conditions of distribution and use, see copyright notice in zlib.h 3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */ 4 */
5 5
@@ -255,7 +255,7 @@ extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
255# define ZSWAP32(q) __builtin_bswap32(q) 255# define ZSWAP32(q) __builtin_bswap32(q)
256#else 256#else
257# define ZSWAP32(q) ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \ 257# define ZSWAP32(q) ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \
258 (((q) & 0xff00) << 8) + (((q) & 0xff) << 24)) 258 (((q) & 0xff00) << 8) + (((q) & 0xff) << 24))
259#endif 259#endif
260 260
261#endif /* ZUTIL_H */ 261#endif /* ZUTIL_H */