]> mj.ucw.cz Git - libucw.git/commitdiff
Wrong alignment fixed.
authorTomas Valla <tom@ucw.cz>
Tue, 18 Jan 2005 15:45:31 +0000 (15:45 +0000)
committerTomas Valla <tom@ucw.cz>
Tue, 18 Jan 2005 15:45:31 +0000 (15:45 +0000)
lib/lib.h

index 15cad2108f83bc80f5316ec0467b68fe78fb47ba..f81e35898f6a210a07b945b45e5487b54a3183a6 100644 (file)
--- a/lib/lib.h
+++ b/lib/lib.h
@@ -23,7 +23,7 @@
 #define OFFSETOF(s, i) ((unsigned int)&((s *)0)->i)
 #define SKIP_BACK(s, i, p) ((s *)((char *)p - OFFSETOF(s, i)))
 #define ALIGN(s, a) (((s)+a-1)&~(a-1))
-#define ALIGN_PTR(p, s) ( (s)>1 ? ((typeof(p)) ((addr_int_t)(p) + (s) - (addr_int_t)(p) % (s))) : (p) )
+#define ALIGN_PTR(p, s) ((addr_int_t)(p) % (s) ? (typeof(p))((addr_int_t)(p) + (s) - (addr_int_t)(p) % (s)) : (p))
 #define UNALIGNED_PART(ptr, type) (((long) (ptr)) % sizeof(type))
 
 /* Some other macros */