Skip to content

Commit

Permalink
netkvm: remove spaces at the beginning of the line
Browse files Browse the repository at this point in the history
Signed-off-by: Yuri Benditovich <[email protected]>
  • Loading branch information
ybendito authored and YanVugenfirer committed Jan 22, 2024
1 parent 39a198b commit 0a6c5fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NetKVM/Common/ParaNdis_VirtQueue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ bool CTXVirtQueue::Create(UINT Index,

m_SGTableCapacity = m_Context->bUseIndirect ? virtio_get_indirect_page_capacity() : GetRingSize();
m_SGTableCapacity = min(m_SGTableCapacity, m_Context->uMaxFragmentsInOneNB);

auto SGBuffer = ParaNdis_AllocateMemoryRaw(m_DrvHandle, m_SGTableCapacity * sizeof(m_SGTable[0]));
m_SGTable = static_cast<struct VirtIOBufferDescriptor *>(SGBuffer);

Expand Down

0 comments on commit 0a6c5fc

Please sign in to comment.