Changeset 93978 in vbox for trunk/include/VBox
- Timestamp:
- Feb 28, 2022 12:29:52 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 150208
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/HGCMMock.h
r93973 r93978 398 398 399 399 size_t i = 0; 400 for ( i; RT_ELEMENTS(pSvc->aHgcmClient); i++)400 for (; RT_ELEMENTS(pSvc->aHgcmClient); i++) 401 401 { 402 402 PTSTHGCMMOCKCLIENT pClient = &pSvc->aHgcmClient[i]; … … 705 705 706 706 uint16_t i = 0; 707 for ( i; i < pInfo->cParms; i++)707 for (; i < pInfo->cParms; i++) 708 708 { 709 709 switch (offSrcParms->type) … … 748 748 offSrcParms = VBGL_HGCM_GET_CALL_PARMS(pInfo); 749 749 750 uint16_t i = 0; 751 for (; i < pInfo->cParms; i++) 750 for (i = 0; i < pInfo->cParms; i++) 752 751 { 753 752 paDstParms[i].type = offSrcParms->type;
Note:
See TracChangeset
for help on using the changeset viewer.