Skip to content

Commit

Permalink
Merged in zhoukejun/apps_nucleo_f767zi (pull request #171)
Browse files Browse the repository at this point in the history
Missing semicolon at the end of function call.

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

Approved-by: Gregory Nutt <gnutt@nuttx.org>
  • Loading branch information
zhoukejun authored and gregory-nutt committed Mar 11, 2019
1 parent e063e93 commit 520bd6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testing/ostest/suspend.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

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

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

Expand Down

0 comments on commit 520bd6a

Please sign in to comment.