Fix awkward comment style

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld 2019-07-18 12:45:34 +00:00
parent 5502b77218
commit cdf0d0bf9a

View File

@ -324,9 +324,9 @@ TunSendNetBufferLists(
void *NbData = NdisGetDataBuffer(Nb, PacketSize, Packet->Data, 1, 0);
if (!NbData)
{
NdisZeroMemory(
Packet->Data, PacketSize); /* The space for the packet has already been allocated in the ring. Write
null-packet rather than fixing the gap in the ring. */
/* The space for the packet has already been allocated in the ring. Write a zero-packet rather than
* fixing the gap in the ring. */
NdisZeroMemory(Packet->Data, PacketSize);
DiscardedPacketsCount++;
}
else