summaryrefslogtreecommitdiff
path: root/linuxthreads/tst-context.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-07-24 22:16:09 +0000
committerUlrich Drepper <drepper@redhat.com>2001-07-24 22:16:09 +0000
commitf369623d6d7af1f7cddfa7bcda413b88107db2e6 (patch)
tree73473a65cf454c625a71426eaadf42ef5fd1b075 /linuxthreads/tst-context.c
parent0db597422f2e5aa5a15342b95b56a0c1247af27f (diff)
Update.
2001-07-22 Bruno Haible <haible@clisp.cons.org> * intl/libintl.h (ngettext, dngettext, dcngettext): Use both msgid1 and msgid2 for printf format argument checking.
Diffstat (limited to 'linuxthreads/tst-context.c')
-rw-r--r--linuxthreads/tst-context.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/linuxthreads/tst-context.c b/linuxthreads/tst-context.c
index cf4783dec1..82a877cffe 100644
--- a/linuxthreads/tst-context.c
+++ b/linuxthreads/tst-context.c
@@ -67,7 +67,10 @@ main (void)
if (getcontext (&mctx) != 0)
{
if (errno == ENOSYS)
- exit (0);
+ {
+ puts ("context handling not supported");
+ exit (0);
+ }
printf ("%s: getcontext: %m\n", __FUNCTION__);
exit (1);