|
From: <sv...@va...> - 2015-01-21 10:38:25
|
Author: florian
Date: Wed Jan 21 10:38:18 2015
New Revision: 3073
Log:
Fix an assert. Unbreak build on 32-bit platforms.
Modified:
trunk/priv/main_util.c
Modified: trunk/priv/main_util.c
==============================================================================
--- trunk/priv/main_util.c (original)
+++ trunk/priv/main_util.c Wed Jan 21 10:38:18 2015
@@ -229,7 +229,7 @@
};
/* Make sure the compiler does no surprise us */
- vassert(offsetof(struct align,x) == REQ_ALIGN);
+ vassert(offsetof(struct align,x) <= REQ_ALIGN);
#if 0
/* Nasty debugging hack, do not use. */
|