diff options
author | Akira TAGOH <akira@tagoh.org> | 2015-10-16 17:24:22 +0900 |
---|---|---|
committer | Akira TAGOH <akira@tagoh.org> | 2015-10-16 17:24:22 +0900 |
commit | d162a4a83d6bf2182e288e0bc0b4d3ae2f78f040 (patch) | |
tree | 1c0357201825e82dbde22d637dc4993c0276fc25 /src | |
parent | 6d6ce028eedc6775b61fe768eca4d791ba9db21d (diff) |
Fix assertion on 32bit arch
Diffstat (limited to 'src')
-rw-r--r-- | src/fcarch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fcarch.c b/src/fcarch.c index da33a83..6ca15a9 100644 --- a/src/fcarch.c +++ b/src/fcarch.c @@ -48,7 +48,7 @@ FC_ASSERT_STATIC (0x08 + 1*FC_MAX(SIZEOF_VOID_P,ALIGNOF_DOUBLE) == sizeof (FcVal FC_ASSERT_STATIC (0x00 + 2*SIZEOF_VOID_P == sizeof (FcPatternElt)); FC_ASSERT_STATIC (0x08 + 2*SIZEOF_VOID_P == sizeof (FcPattern)); FC_ASSERT_STATIC (0x08 + 2*SIZEOF_VOID_P == sizeof (FcCharSet)); -FC_ASSERT_STATIC (0x08 + 7*SIZEOF_VOID_P == sizeof (FcCache)); +FC_ASSERT_STATIC (0x10 + 6*SIZEOF_VOID_P == sizeof (FcCache)); int |