VirtualBox

Changeset 50316 in vbox


Ignore:
Timestamp:
Feb 4, 2014 8:03:23 AM (11 years ago)
Author:
vboxsync
Message:

warnings

Location:
trunk/src/VBox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/GuestHost/OpenGL/include/cr_vreg.h

    r50313 r50316  
    189189VBOXVREGDECL(int) VBoxVrListIntersect(PVBOXVR_LIST pList, const VBOXVR_LIST *pList2, bool *pfChanged);
    190190
    191 VBOXVREGDECL(int) VBoxVrInit();
    192 VBOXVREGDECL(void) VBoxVrTerm();
     191VBOXVREGDECL(int) VBoxVrInit(void);
     192VBOXVREGDECL(void) VBoxVrTerm(void);
    193193
    194194typedef struct VBOXVR_LIST_ITERATOR
  • trunk/src/VBox/HostServices/DragAndDrop/dndmanager.cpp

    r50308 r50316  
    351351                 * file scheme NULL is returned. */
    352352                char *pszFilePath;
    353                 if (pszFilePath = RTUriFilePath(strURI.c_str(), URI_FILE_FORMAT_AUTO))
     353                if ((pszFilePath = RTUriFilePath(strURI.c_str(), URI_FILE_FORMAT_AUTO)))
    354354                {
    355355                    /* Add the path to our internal file list (recursive in
    356356                     * the case of a directory). */
    357357                    char *pszFilename;
    358                     if (pszFilename = RTPathFilename(pszFilePath))
     358                    if ((pszFilename = RTPathFilename(pszFilePath)))
    359359                    {
    360360                        char *pszNewURI = RTUriFileCreate(pszFilename);
     
    559559            {
    560560                char *pszNewFile;
    561                 if (pszNewFile = RTStrAPrintf2("%s%c%s", pcszPath, RTPATH_DELIMITER, DirEntry.szName))
     561                if ((pszNewFile = RTStrAPrintf2("%s%c%s", pcszPath, RTPATH_DELIMITER, DirEntry.szName)))
    562562                {
    563563                    /* We need the size and the mode of the file. */
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