summaryrefslogtreecommitdiff
path: root/nuttx/examples/ostest/cond.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-30 13:21:08 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-30 13:21:08 +0000
commitdc8be32e82d78481cd269b4e60d025e2e2357db7 (patch)
tree5306d2537aaf93091a35535d35e48dd408bf1adf /nuttx/examples/ostest/cond.c
parent7d9bb85901625f763685421c076e46b98aa1c72a (diff)
downloadnuttx-dc8be32e82d78481cd269b4e60d025e2e2357db7.tar.gz
nuttx-dc8be32e82d78481cd269b4e60d025e2e2357db7.tar.bz2
nuttx-dc8be32e82d78481cd269b4e60d025e2e2357db7.zip
Cosmetic
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@588 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples/ostest/cond.c')
-rw-r--r--nuttx/examples/ostest/cond.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/nuttx/examples/ostest/cond.c b/nuttx/examples/ostest/cond.c
index 7c59f770e..d5f96dfc5 100644
--- a/nuttx/examples/ostest/cond.c
+++ b/nuttx/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);
}