From dc65596ce8cf0888693732f4ed6f5600288dcd1e Mon Sep 17 00:00:00 2001 From: deischen Date: Tue, 2 Jul 2002 01:26:16 +0000 Subject: Fix a couple of minor nits that prevented this from compiling. Pointed out by: julian --- lib/libc_r/test/mutex_d.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/libc_r') diff --git a/lib/libc_r/test/mutex_d.c b/lib/libc_r/test/mutex_d.c index 21bf848..45d28a5 100644 --- a/lib/libc_r/test/mutex_d.c +++ b/lib/libc_r/test/mutex_d.c @@ -165,7 +165,7 @@ static pthread_mutex_t waiter_mutex; static pthread_mutex_t cond_mutex; static pthread_cond_t cond_var; -static FILE *logfile = stdout; +static FILE *logfile; static int error_count = 0, pass_count = 0, total = 0; @@ -354,7 +354,7 @@ waiter (void *arg) /* Do we report our status? */ if (statep->flags & FLAGS_REPORT_WAITCONDVAR) { write (pipefd[1], &statep->id, sizeof (statep->id)); - log_trace ("Thread %d: wrote %d to pipe.\n", + log_trace ("Thread %d: wrote to pipe.\n", (int) statep->id); } log_trace ("Thread %d: received cond_var signal.\n", @@ -1438,6 +1438,8 @@ int main (int argc, char *argv[]) struct sigaction act; struct sched_param param; + logfile = stdout; + assert (pthread_getschedparam (pthread_self (), &policy, ¶m) == 0); main_prio = param.sched_priority; -- cgit v1.1