From: Eric Blake Date: Sat, 6 Jun 2009 19:23:51 +0000 (-0600) Subject: test-alignof: fix typo with long double X-Git-Tag: v0.1~5880 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=95b4cb56b59c268b34f98eab95b470ba40964376;p=gnulib.git 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 index 009c6ea3a..a5af1c565 100644 --- 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 index 93d5dedc2..8bd5bc19d 100644 --- a/tests/test-alignof.c +++ b/tests/test-alignof.c @@ -43,7 +43,7 @@ CHECK (int) CHECK (long) CHECK (float) CHECK (double) -CHECK (long double) +CHECK (longdouble) CHECK (int64_t) CHECK (struct1) CHECK (struct2)