X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-modf.c;h=c84566282389e9cce5488da5b0c48419e5913d75;hb=f335f3403011808afd7b7ee72253eb86d7ddd611;hp=754a729c4262bc9dba0154d5a25cf8a2d47a7cc3;hpb=05edbffcd49b284a6fbedb15f10e2c67eb4b4f17;p=gnulib.git diff --git a/tests/test-modf.c b/tests/test-modf.c index 754a729c4..c84566282 100644 --- a/tests/test-modf.c +++ b/tests/test-modf.c @@ -1,5 +1,5 @@ /* Test of modf() function. - Copyright (C) 2010 Free Software Foundation, Inc. + Copyright (C) 2010-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -41,7 +41,7 @@ main () /* A particular negative value. */ x = -5.972406760; y = modf (x, &z); - ASSERT (y >= -0.972406761 && y <= 0.972406759); + ASSERT (y >= -0.972406761 && y <= -0.972406759); ASSERT (z == -5.0); return 0;