diff options
Diffstat (limited to 'src/ICElibint.h')
-rw-r--r-- | src/ICElibint.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ICElibint.h b/src/ICElibint.h index 240e295..e034194 100644 --- a/src/ICElibint.h +++ b/src/ICElibint.h @@ -58,7 +58,7 @@ Author: Ralph Mor, X Consortium #define PAD64(_bytes) ((8 - ((unsigned int) (_bytes) % 8)) % 8) -#define PADDED_BYTES64(_bytes) (_bytes + PAD64 (_bytes)) +#define PADDED_BYTES64(_bytes) ((unsigned int) _bytes + PAD64 (_bytes)) /* @@ -67,7 +67,7 @@ Author: Ralph Mor, X Consortium #define PAD32(_bytes) ((4 - ((unsigned int) (_bytes) % 4)) % 4) -#define PADDED_BYTES32(_bytes) (_bytes + PAD32 (_bytes)) +#define PADDED_BYTES32(_bytes) ((unsigned int) _bytes + PAD32 (_bytes)) /* |