summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2012-05-31 15:34:36 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-05-31 15:34:36 -0500
commit721fe34aaea8c2ff86d76b27122c9ed72b5064f4 (patch)
tree3f24a0b487e1467a144a5b83bbb9e9de70bdbd0e /testsuites/libtests
parentsamples - Eliminate missing prototype warnings (diff)
downloadrtems-721fe34aaea8c2ff86d76b27122c9ed72b5064f4.tar.bz2
Fix C files which had two semi-colons at EOL
Diffstat (limited to 'testsuites/libtests')
-rw-r--r--testsuites/libtests/cpuuse/tswitch.c2
-rw-r--r--testsuites/libtests/flashdisk01/init.c2
-rw-r--r--testsuites/libtests/termios04/termios_testdriver_intr.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/testsuites/libtests/cpuuse/tswitch.c b/testsuites/libtests/cpuuse/tswitch.c
index 5635014d28..6933f89ae6 100644
--- a/testsuites/libtests/cpuuse/tswitch.c
+++ b/testsuites/libtests/cpuuse/tswitch.c
@@ -29,7 +29,7 @@
*/
struct taskSwitchLog taskSwitchLog[25];
int taskSwitchLogIndex;
-volatile int testsFinished;;
+volatile int testsFinished;
void Task_switch(
rtems_tcb *unused,
diff --git a/testsuites/libtests/flashdisk01/init.c b/testsuites/libtests/flashdisk01/init.c
index 5ca6614e0c..3c6ffae1af 100644
--- a/testsuites/libtests/flashdisk01/init.c
+++ b/testsuites/libtests/flashdisk01/init.c
@@ -227,7 +227,7 @@ static int flashdisk_blank(
{
int eno = 0;
const uint8_t *current = get_data_pointer(sd, segment, offset);
- const uint8_t *end = current + size;;
+ const uint8_t *end = current + size;
while (eno == 0 && current != end) {
if (*current != 0xff) {
diff --git a/testsuites/libtests/termios04/termios_testdriver_intr.c b/testsuites/libtests/termios04/termios_testdriver_intr.c
index 086bbb3a12..72a5f9e296 100644
--- a/testsuites/libtests/termios04/termios_testdriver_intr.c
+++ b/testsuites/libtests/termios04/termios_testdriver_intr.c
@@ -189,11 +189,11 @@ rtems_device_driver termios_test_driver_initialize(
status = rtems_timer_create(rtems_build_name('T', 'M', 'R', 'X'), &Rx_Timer);
if ( status )
- rtems_fatal_error_occurred(1);;
+ rtems_fatal_error_occurred(1);
status = rtems_timer_create(rtems_build_name('T', 'M', 'T', 'X'), &Tx_Timer);
if ( status )
- rtems_fatal_error_occurred(1);;
+ rtems_fatal_error_occurred(1);
return RTEMS_SUCCESSFUL;
}