X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Flroundf.c;h=a35c97be7ce39044f893e6ec52b2a0954dec1832;hb=e084227a3608bc38230b88ea03e7b0f0804dd3ad;hp=85902891aa5a5ce563a813bb808f6bd4e6731cf9;hpb=b5bbc6ebaeaf4381ea2436a3b410dcf4980c8efd;p=libc-test diff --git a/src/math/lroundf.c b/src/math/lroundf.c index 8590289..a35c97b 100644 --- a/src/math/lroundf.c +++ b/src/math/lroundf.c @@ -10,7 +10,7 @@ static struct f_i t[] = { int main(void) { #pragma STDC FENV_ACCESS ON - int yi; + long long yi; float d; int e, i, err = 0; struct f_i *p; @@ -32,7 +32,7 @@ int main(void) err++; } if (yi != p->i) { - printf("%s:%d: %s lroundf(%a) want %lld got %d\n", + printf("%s:%d: %s lroundf(%a) want %lld got %lld\n", p->file, p->line, rstr(p->r), p->x, p->i, yi); err++; }