X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Ffunctional%2Fstrtold.c;h=6ea167276ae5833de1eaade248126f053943c30a;hb=281b80f0e70fe28356c3f0ded8b86f28a5c74d0a;hp=e37f7f0bd39bd83ce7c8961f4d43d5ae14e07672;hpb=2cf89517c5b25c2524fe0c0c01ed277d7307a852;p=libc-test diff --git a/src/functional/strtold.c b/src/functional/strtold.c index e37f7f0..6ea1672 100644 --- a/src/functional/strtold.c +++ b/src/functional/strtold.c @@ -88,7 +88,7 @@ int main(void) for (i = 0; i < length(t); i++) { x = strtold(t[i].s, &p); if (x != t[i].f) - error("strtold(\"%s\") want %La got %La\n", t[i].s, t[i].f, x); + t_error("strtold(\"%s\") want %La got %La\n", t[i].s, t[i].f, x); } - return test_status; + return t_status; }