VirtualBox

Changeset 63259 in vbox


Ignore:
Timestamp:
Aug 10, 2016 12:37:42 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
109891
Message:

Main: warnings

Location:
trunk/src/VBox/Main
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-all/win/VBoxProxyStub.c

    r63177 r63259  
    11701170    LSTATUS rc;
    11711171    char szClsId[CURLY_UUID_STR_BUF_SIZE];
     1172    RT_NOREF(pszAppId);
    11721173
    11731174    Assert(!pszAppId || *pszAppId == '{');
  • trunk/src/VBox/Main/src-client/AdditionsFacilityImpl.cpp

    r62485 r63259  
    6161                                uint32_t a_fFlags, PCRTTIMESPEC a_pTimeSpecTS)
    6262{
     63    RT_NOREF(a_pParent);
    6364    LogFlowThisFunc(("a_pParent=%p\n", a_pParent));
    6465
  • trunk/src/VBox/Main/src-client/DisplaySourceBitmapImpl.cpp

    r62485 r63259  
    118118                                          DISPLAYFBINFO *pFBInfo)
    119119{
     120    RT_NOREF(aScreenId);
    120121    int rc = VINF_SUCCESS;
    121122
  • trunk/src/VBox/Main/src-client/GuestDirectoryImpl.cpp

    r60622 r63259  
    188188            pSvcCb->mpaParms[idx++].getUInt32(&dataCb.rc);
    189189
    190             int guestRc = (int)dataCb.rc; /* uint32_t vs. int. */
    191 
    192             LogFlowFunc(("uType=%RU32, guestRc=%Rrc\n",
    193                          dataCb.uType, guestRc));
     190            LogFlowFunc(("uType=%RU32, vrcGguest=%Rrc\n", dataCb.uType, (int)dataCb.rc));
    194191
    195192            switch (dataCb.uType)
  • trunk/src/VBox/Main/src-client/GuestDnDPrivate.cpp

    r63158 r63259  
    281281                                  int rcOp /* = VINF_SUCCESS */, const Utf8Str &strMsg /* = "" */)
    282282{
     283    RT_NOREF(rcOp);
    283284    LogFlowFunc(("uStatus=%RU32, uPercentage=%RU32, rcOp=%Rrc, strMsg=%s\n",
    284285                 uStatus, uPercentage, rcOp, strMsg.c_str()));
  • trunk/src/VBox/Main/src-client/GuestDnDSourceImpl.cpp

    r63185 r63259  
    750750                                       uint64_t cbSize, uint32_t fMode, uint32_t fFlags)
    751751{
     752    RT_NOREF(fFlags);
    752753    AssertPtrReturn(pCtx,    VERR_INVALID_POINTER);
    753754    AssertPtrReturn(pszPath, VERR_INVALID_POINTER);
  • trunk/src/VBox/Main/src-client/Nvram.cpp

    r62485 r63259  
    344344DECLCALLBACK(int) Nvram::drvNvram_Construct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags)
    345345{
     346    RT_NOREF(fFlags);
    346347    PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns);
    347348    LogFlowFunc(("iInstance/#%d pCfg=%p fFlags=%x\n", pDrvIns->iInstance, pCfg, fFlags));
  • trunk/src/VBox/Main/src-client/UsbWebcamInterface.cpp

    r62824 r63259  
    241241                                    const VRDEVIDEOINDEVICEDESC *pDeviceDesc, uint32_t cbDeviceDesc)
    242242{
     243    RT_NOREF(pvUser);
    243244    EMWEBCAMREMOTE *pRemote = (EMWEBCAMREMOTE *)pDeviceCtx;
    244245    Assert(pRemote == mpRemote);
     
    269270                                 const VRDEVIDEOINCTRLHDR *pControl, uint32_t cbControl)
    270271{
     272    RT_NOREF(rcRequest);
    271273    EMWEBCAMREMOTE *pRemote = (EMWEBCAMREMOTE *)pDeviceCtx; NOREF(pRemote);
    272274    Assert(pRemote == mpRemote);
     
    293295                               const VRDEVIDEOINPAYLOADHDR *pFrame, uint32_t cbFrame)
    294296{
     297    RT_NOREF(rcRequest, pDeviceCtx);
    295298    LogFlowFunc(("rcRequest %Rrc %p %p %d\n",
    296299                 rcRequest, pDeviceCtx, pFrame, cbFrame));
     
    384387/* static */ DECLCALLBACK(int) EmWebcam::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags)
    385388{
     389    RT_NOREF(fFlags);
    386390    PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns);
    387391    LogFlowFunc(("iInstance:%d, pCfg:%p, fFlags:%x\n", pDrvIns->iInstance, pCfg, fFlags));
  • trunk/src/VBox/Main/src-client/VMMDevInterface.cpp

    r63244 r63259  
    753753DECLCALLBACK(void) VMMDev::drvReset(PPDMDRVINS pDrvIns)
    754754{
     755    RT_NOREF(pDrvIns);
    755756    LogFlow(("VMMDev::drvReset: iInstance=%d\n", pDrvIns->iInstance));
    756757#ifdef VBOX_WITH_HGCM
    757     HGCMHostReset ();
     758    HGCMHostReset();
    758759#endif /* VBOX_WITH_HGCM */
    759760}
Note: See TracChangeset for help on using the changeset viewer.

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