VirtualBox

Changeset 21789 in vbox


Ignore:
Timestamp:
Jul 24, 2009 5:29:12 PM (16 years ago)
Author:
vboxsync
Message:

PDMDriver/DevHlp.cpp: Don't use dash when mangling queue names, STAM will bitch.

Location:
trunk/src/VBox/VMM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/PDMDevHlp.cpp

    r21363 r21789  
    12281228    if (pDevIns->iInstance > 0)
    12291229    {
    1230         pszName = MMR3HeapAPrintf(pVM, MM_TAG_PDM_DEVICE_DESC, "%s-%u", pszName, pDevIns->iInstance);
     1230        pszName = MMR3HeapAPrintf(pVM, MM_TAG_PDM_DEVICE_DESC, "%s_%u", pszName, pDevIns->iInstance);
    12311231        AssertLogRelReturn(pszName, VERR_NO_MEMORY);
    12321232    }
  • trunk/src/VBox/VMM/PDMDriver.cpp

    r21363 r21789  
    826826    if (pDrvIns->iInstance > 0)
    827827    {
    828         pszName = MMR3HeapAPrintf(pVM, MM_TAG_PDM_DRIVER_DESC, "%s-%u", pszName, pDrvIns->iInstance);
     828        pszName = MMR3HeapAPrintf(pVM, MM_TAG_PDM_DRIVER_DESC, "%s_%u", pszName, pDrvIns->iInstance);
    829829        AssertLogRelReturn(pszName, VERR_NO_MEMORY);
    830830    }
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