From 715cc89148a462f9beb5cbb07ebe943a542551da Mon Sep 17 00:00:00 2001 From: patacongo Date: Wed, 30 Jan 2008 13:21:08 +0000 Subject: [PATCH] Cosmetic git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@588 42af7a65-404d-4744-a932-0658087f49c3 --- examples/ostest/cond.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/ostest/cond.c b/examples/ostest/cond.c index 7c59f770e8..d5f96dfc5b 100644 --- a/examples/ostest/cond.c +++ b/examples/ostest/cond.c @@ -286,7 +286,8 @@ void cond_test(void) printf("cond_test: \tWaiter\tSignaler\n"); printf("cond_test: Loops\t%d\t%d\n", waiter_nloops, signaler_nloops); printf("cond_test: Errors\t%d\t%d\n", waiter_nerrors, signaler_nerrors); - printf("cond_test: \n%d times, waiter did not have to wait for data\n", waiter_nloops - waiter_waits); + printf("cond_test:\n"); + printf("cond_test: %d times, waiter did not have to wait for data\n", waiter_nloops - waiter_waits); printf("cond_test: %d times, data was already available when the signaler run\n", signaler_already); printf("cond_test: %d times, the waiter was in an unexpected state when the signaler ran\n", signaler_state); }