# HG changeset patch # User Eric Blake # Date 1244316231 21600 # Node ID 806d4180d151f9cd4cd0be27a76379843737f6cd # Parent 85d7761e781e8b97d56c6b0d1c89a645d25601f2 test-alignof: fix typo with long double * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid compiler error. Signed-off-by: Eric Blake diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-06-06 Eric Blake + + test-alignof: fix typo with long double + * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid + compiler error. + 2009-06-06 Neil Jerram (tiny change) Escape non-texinfo { and }s. diff --git a/tests/test-alignof.c b/tests/test-alignof.c --- a/tests/test-alignof.c +++ b/tests/test-alignof.c @@ -43,7 +43,7 @@ CHECK (long) CHECK (float) CHECK (double) -CHECK (long double) +CHECK (longdouble) CHECK (int64_t) CHECK (struct1) CHECK (struct2)