X-Git-Url: http://nsz.repo.hu/git/?p=libc-test;a=blobdiff_plain;f=src%2Ffunctional%2Ftls_align.c;h=c2c1739c7837bf8b539251f9cdaec45c58bea340;hp=505abf20ac13bbffb4dca3085cc1d87746c33e14;hb=cfa23cc1bd01f5c44d7746b8b1839f84d5e1b6eb;hpb=b775d19f7ff58da3fe009d48742068cc92a274f2 diff --git a/src/functional/tls_align.c b/src/functional/tls_align.c index 505abf2..c2c1739 100644 --- a/src/functional/tls_align.c +++ b/src/functional/tls_align.c @@ -13,10 +13,10 @@ int main() for (i = 0; i < sizeof t/sizeof *t; i++) { if (!t[i].name) - error("name is not set for t[%d]\n", i); + t_error("name is not set for t[%d]\n", i); if (t[i].addr & (t[i].align-1)) - error("bad alignment: %s, size: %u, align: %u, addr: 0x%lx\n", + t_error("bad alignment: %s, size: %u, align: %u, addr: 0x%lx\n", t[i].name, t[i].size, t[i].align, t[i].addr); } - return test_status; + return t_status; }