Changeset 42548 in vbox
- Timestamp:
- Aug 2, 2012 3:30:49 PM (12 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
-
VBox/Devices/BiosCommonCode/MakeAlternativeSource.cpp (modified) (2 diffs)
-
bldprogs/VBoxCPP.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/BiosCommonCode/MakeAlternativeSource.cpp
r42369 r42548 908 908 } 909 909 memcpy(&pDis->abInstr[offInstr], &g_pbImg[offBios], cbToRead); 910 pDis->cbCachedInstr = offInstr + cbToRead;910 pDis->cbCachedInstr = (uint8_t)(offInstr + cbToRead); 911 911 return VINF_SUCCESS; 912 912 } … … 1094 1094 /* Final gap. */ 1095 1095 if (uFlatAddr < g_uBiosFlatBase + g_cbImg) 1096 fRc = disCopySegmentGap(uFlatAddr, g_uBiosFlatBase + g_cbImg - uFlatAddr);1096 fRc = disCopySegmentGap(uFlatAddr, (uint32_t)(g_uBiosFlatBase + g_cbImg - uFlatAddr)); 1097 1097 else if (uFlatAddr > g_uBiosFlatBase + g_cbImg) 1098 1098 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Last segment spills beyond 1MB; uFlatAddr=%#x\n", uFlatAddr); -
trunk/src/bldprogs/VBoxCPP.cpp
r41359 r42548 155 155 char **papszArgs; 156 156 /** The number of argument values current in papszArgs. */ 157 size_tcArgs;157 uint32_t cArgs; 158 158 /** The number of argument values papszArgs can currently hold */ 159 size_tcArgsAlloced;159 uint32_t cArgsAlloced; 160 160 } VBCPPMACROEXP; 161 161 /** Pointer to macro expansion data. */
Note:
See TracChangeset
for help on using the changeset viewer.

