VirtualBox

Ignore:
Timestamp:
Dec 2, 2009 2:34:47 PM (15 years ago)
Author:
vboxsync
Message:

Main: cleanup: remove all CheckComRC* macros (no functional change)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/Performance.cpp

    r22173 r25149  
    295295}
    296296
    297 void CircularBuffer::init(ULONG length)
     297void CircularBuffer::init(ULONG ulLength)
    298298{
    299299    if (mData)
    300300        RTMemFree(mData);
    301     mLength = length;
     301    mLength = ulLength;
    302302    if (mLength)
    303         mData = (ULONG *)RTMemAllocZ(length * sizeof(ULONG));
     303        mData = (ULONG*)RTMemAllocZ(ulLength * sizeof(ULONG));
    304304    else
    305305        mData = NULL;
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette