diff options
Diffstat (limited to 'zutil.h')
-rw-r--r-- | zutil.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 */ |