Skip to content

Commit f61d7dd

Browse files
committed
Fix formatting
1 parent 7b0328c commit f61d7dd

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

test/cbmc/proofs/ARP/ARP_OutputARPRequest_buffer_alloc1/OutputARPRequest_harness.c

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,17 @@
2525

2626
size_t uxNetworkInterfaceAllocateRAMToBuffers( NetworkBufferDescriptor_t pxNetworkBuffers[ ipconfigNUM_NETWORK_BUFFER_DESCRIPTORS ] )
2727
{
28-
/*
29-
In the case of buffer allocation scheme 1 the network buffers are
30-
fixed size and its asserted in xNetworkBuffersInitialise call that the
31-
buffer is at least ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER bytes
32-
33-
Refer:
34-
configASSERT( ( uxMaxNetworkInterfaceAllocatedSizeBytes >= ( ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER ) ) );
35-
36-
*/
28+
/*
29+
* In the case of buffer allocation scheme 1 the network buffers are
30+
* fixed size and its asserted in xNetworkBuffersInitialise call that the
31+
* buffer is at least ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER bytes
32+
*
33+
* Refer:
34+
* configASSERT( ( uxMaxNetworkInterfaceAllocatedSizeBytes >= ( ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER ) ) );
35+
*
36+
*/
3737
size_t xAllocSize = 0;
38+
3839
for( int x = 0; x < ipconfigNUM_NETWORK_BUFFER_DESCRIPTORS; x++ )
3940
{
4041
NetworkBufferDescriptor_t * current = &pxNetworkBuffers[ x ];

0 commit comments

Comments
 (0)