From 94acb3c1a0fbd14482224d6af3699ddb9e163510 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Sun, 12 Feb 2012 14:11:48 -0800 Subject: zlib 1.2.6.1 --- zutil.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'zutil.h') diff --git a/zutil.h b/zutil.h index 2f4d14d..69d83ed 100644 --- a/zutil.h +++ b/zutil.h @@ -1,5 +1,5 @@ /* zutil.h -- internal interface and configuration of the compression library - * Copyright (C) 1995-2011 Jean-loup Gailly. + * Copyright (C) 1995-2012 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h */ @@ -255,7 +255,7 @@ extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */ # define ZSWAP32(q) __builtin_bswap32(q) #else # define ZSWAP32(q) ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \ - (((q) & 0xff00) << 8) + (((q) & 0xff) << 24)) + (((q) & 0xff00) << 8) + (((q) & 0xff) << 24)) #endif #endif /* ZUTIL_H */ -- cgit v1.2.3-55-g6feb