summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/termios04
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/termios04
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/termios04')
-rw-r--r--testsuites/libtests/termios04/termios_testdriver_intr.c4
1 files changed, 2 insertions, 2 deletions
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;
}