Merged in zhoukejun/apps_nucleo_f767zi (pull request #171)

Missing semicolon at the end of function call.

Signed-off-by: Kejun ZHOU <zhoukejun@outlook.com>

Approved-by: Gregory Nutt <gnutt@nuttx.org>
This commit is contained in:
Kejun ZHOU 2019-03-11 19:22:25 +00:00 committed by Gregory Nutt
parent e063e93f77
commit 520bd6ad44

View File

@ -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);