diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-02-21 03:20:32 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-02-21 03:20:32 +0000 |
commit | dd0b7b197ed0ea18b0a869a39acbc51435d0ba56 (patch) | |
tree | 88139dd0bc87bd0be4fe162612a1ca1b445c2e86 /nptl/tst-cancel9.c | |
parent | 6fadaea6a2854bbb20737ac199f8c4b85415d661 (diff) | |
download | glibc-dd0b7b197ed0ea18b0a869a39acbc51435d0ba56.tar glibc-dd0b7b197ed0ea18b0a869a39acbc51435d0ba56.tar.gz glibc-dd0b7b197ed0ea18b0a869a39acbc51435d0ba56.tar.bz2 glibc-dd0b7b197ed0ea18b0a869a39acbc51435d0ba56.zip |
Update.
2004-02-20 Ulrich Drepper <drepper@redhat.com>
* tst-cancel9.c (cleanup): Don't print to stderr.
Diffstat (limited to 'nptl/tst-cancel9.c')
-rw-r--r-- | nptl/tst-cancel9.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/tst-cancel9.c b/nptl/tst-cancel9.c index 1d59e19e0f..037ef30fd6 100644 --- a/nptl/tst-cancel9.c +++ b/nptl/tst-cancel9.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2003. @@ -31,7 +31,7 @@ static pthread_barrier_t b; static void cleanup (void *arg) { - fprintf (stderr, "in cleanup\n"); + fputs ("in cleanup\n", stdout); } |