Fix C files which had two semi-colons at EOL

This commit is contained in:
Joel Sherrill
2012-05-31 15:34:36 -05:00
parent 5f0cd3499c
commit 721fe34aae
25 changed files with 30 additions and 31 deletions

View File

@@ -2701,7 +2701,7 @@ rtems_bdbuf_swapout_task (rtems_task_argument arg)
{
rtems_bdbuf_swapout_transfer transfer;
uint32_t period_in_ticks;
const uint32_t period_in_msecs = bdbuf_config.swapout_period;;
const uint32_t period_in_msecs = bdbuf_config.swapout_period;
uint32_t timer_delta;
transfer.write_req = rtems_bdbuf_swapout_writereq_alloc ();

View File

@@ -800,7 +800,7 @@ msdos_set_first_char4file_name(
{
uint32_t sec = (fat_cluster_num_to_sector_num(mt_entry, start.cln) +
(start.ofs >> fs_info->fat.vol.sec_log2));
uint32_t byte = (start.ofs & (fs_info->fat.vol.bps - 1));;
uint32_t byte = (start.ofs & (fs_info->fat.vol.bps - 1));
ret = _fat_block_write(mt_entry, sec, byte + MSDOS_FILE_NAME_OFFSET, 1,
&fchar);

View File

@@ -450,7 +450,7 @@ rtems_libi2c_register_bus (const char *name, rtems_libi2c_bus_t * bus)
/* initialization failed */
i = -err;
} else {
busses[i].name = nmcpy;;
busses[i].name = nmcpy;
nmcpy = 0;
}

View File

@@ -1047,7 +1047,7 @@ rtems_capture_open (uint32_t size, rtems_capture_timestamp timestamp __attribu
}
else
{
capture_extension_index = rtems_object_id_get_index (capture_id);;
capture_extension_index = rtems_object_id_get_index (capture_id);
}
/*

View File

@@ -85,7 +85,7 @@ uint32_t _CORE_message_queue_Flush_support(
_ISR_Disable( level );
inactive_head = _Chain_Head( &the_message_queue->Inactive_messages );
inactive_first = inactive_head->next;;
inactive_first = inactive_head->next;
message_queue_first = _Chain_First( &the_message_queue->Pending_messages );
message_queue_last = _Chain_Last( &the_message_queue->Pending_messages );

View File

@@ -44,7 +44,7 @@ static Heap_Resize_status _Heap_Resize_block_checked(
Heap_Block *next_block = _Heap_Block_at( block, block_size );
uintptr_t next_block_size = _Heap_Block_size( next_block );
bool next_block_is_free = _Heap_Is_free( next_block );;
bool next_block_is_free = _Heap_Is_free( next_block );
_HAssert( _Heap_Is_block_in_heap( heap, next_block ) );
_HAssert( _Heap_Is_prev_used( next_block ) );