VirtualBox

儲存庫 vbox 的更動 18493


忽略:
時間撮記:
2009-3-29 上午01:49:49 (16 年 以前)
作者:
vboxsync
訊息:

ConsoleImpl.cpp: size_t warnings.

檔案:
修改 1 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/Main/ConsoleImpl.cpp

    r18348 r18493  
    10571057    parm[0].type = VBOX_HGCM_SVC_PARM_PTR;
    10581058    parm[0].u.pointer.addr = utf8Patterns.mutableRaw();
    1059     parm[0].u.pointer.size = utf8Patterns.length() + 1;
     1059    parm[0].u.pointer.size = (uint32_t)utf8Patterns.length() + 1;
    10601060
    10611061    /*
     
    10761076        parm[1].type = VBOX_HGCM_SVC_PARM_PTR;
    10771077        parm[1].u.pointer.addr = Utf8Buf.mutableRaw();
    1078         parm[1].u.pointer.size = cchBuf + 1024;
     1078        parm[1].u.pointer.size = (uint32_t)cchBuf + 1024;
    10791079        vrc = mVMMDev->hgcmHostCall ("VBoxGuestPropSvc", ENUM_PROPS_HOST, 3,
    10801080                                     &parm[0]);
     
    36753675    parm[0].u.pointer.addr = Utf8Name.mutableRaw();
    36763676    /* The + 1 is the null terminator */
    3677     parm[0].u.pointer.size = Utf8Name.length() + 1;
     3677    parm[0].u.pointer.size = (uint32_t)Utf8Name.length() + 1;
    36783678    parm[1].type = VBOX_HGCM_SVC_PARM_PTR;
    36793679    parm[1].u.pointer.addr = pszBuffer;
     
    37403740    parm[0].u.pointer.addr = Utf8Name.mutableRaw();
    37413741    /* The + 1 is the null terminator */
    3742     parm[0].u.pointer.size = Utf8Name.length() + 1;
     3742    parm[0].u.pointer.size = (uint32_t)Utf8Name.length() + 1;
    37433743    Utf8Str Utf8Value = aValue;
    37443744    if (aValue != NULL)
     
    37483748        parm[1].u.pointer.addr = Utf8Value.mutableRaw();
    37493749        /* The + 1 is the null terminator */
    3750         parm[1].u.pointer.size = Utf8Value.length() + 1;
     3750        parm[1].u.pointer.size = (uint32_t)Utf8Value.length() + 1;
    37513751    }
    37523752    Utf8Str Utf8Flags = aFlags;
     
    37573757        parm[2].u.pointer.addr = Utf8Flags.mutableRaw();
    37583758        /* The + 1 is the null terminator */
    3759         parm[2].u.pointer.size = Utf8Flags.length() + 1;
     3759        parm[2].u.pointer.size = (uint32_t)Utf8Flags.length() + 1;
    37603760    }
    37613761    if ((aValue != NULL) && (aFlags != NULL))
     
    45514551    enum { StepCount = 7 };
    45524552    /* current step */
    4553     size_t step = 0;
     4553    ULONG step = 0;
    45544554
    45554555    HRESULT rc = S_OK;
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

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