From 520bd6ad445ae53183e8c292e9017e5c1365dd1d Mon Sep 17 00:00:00 2001 From: Kejun ZHOU Date: Mon, 11 Mar 2019 19:22:25 +0000 Subject: [PATCH] Merged in zhoukejun/apps_nucleo_f767zi (pull request #171) Missing semicolon at the end of function call. Signed-off-by: Kejun ZHOU Approved-by: Gregory Nutt --- testing/ostest/suspend.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testing/ostest/suspend.c b/testing/ostest/suspend.c index 31934351f..a57f1b474 100644 --- a/testing/ostest/suspend.c +++ b/testing/ostest/suspend.c @@ -94,7 +94,7 @@ void suspend_test(void) /* Wait a bit */ - printf("suspend_test: Is the victim saying anything?\n") + printf("suspend_test: Is the victim saying anything?\n"); FFLUSH(); sleep(10); @@ -107,7 +107,7 @@ void suspend_test(void) printf("suspend_test: ERROR kill() failed\n" ); } - printf("suspend_test: Is the victim still jabbering?\n") + printf("suspend_test: Is the victim still jabbering?\n"); FFLUSH(); sleep(10); @@ -118,7 +118,7 @@ void suspend_test(void) printf("suspend_test: ERROR kill() failed\n" ); } - printf("suspend_test: The victim should continue the rant.\n") + printf("suspend_test: The victim should continue the rant.\n"); FFLUSH(); sleep(10);