diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2004-08-02 05:19:30 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2004-08-02 05:19:30 +0000 |
commit | aa0a7d5865c74260009f373da4216c2c83866c77 (patch) | |
tree | fb01e87f4238953832dc6cda53c68db7b7488b1d /lib | |
parent | 7d66365bcf0cb0ecf3d2f7d70725cf4b86f3acb5 (diff) | |
download | coreutils-aa0a7d5865c74260009f373da4216c2c83866c77.tar.xz |
(UNALIGNED_P): Use size_t; in practice, this is just as
good as uintptr_t in checking for alignments, and has fewer
configuration hassles.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/md5.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -245,11 +245,7 @@ md5_process_bytes (const void *buffer, size_t len, struct md5_ctx *ctx) { #if !_STRING_ARCH_unaligned # define alignof(type) offsetof (struct { char c; type x; }, x) -# ifdef UINTPTR_MAX -# define UNALIGNED_P(p) (((uintptr_t) p) % alignof (md5_uint32) != 0) -# else -# define UNALIGNED_P(p) 1 -# endif +# define UNALIGNED_P(p) (((size_t) p) % alignof (md5_uint32) != 0) if (UNALIGNED_P (buffer)) while (len > 64) { |