Changeset 49500 in vbox for trunk/src/VBox
- Timestamp:
- Nov 15, 2013 12:52:19 PM (11 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp
r49087 r49500 1273 1273 rc = DBGCCmdHlpPrintf(pCmdHlp, " %4d: %s\n", Line.uLineNo - cBefore - 1, szLine); 1274 1274 szLine[0] = '\0'; 1275 fgets(szLine, sizeof(szLine), phFile);1275 (void)fgets(szLine, sizeof(szLine), phFile); 1276 1276 cLines++; 1277 1277 } -
trunk/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp
r49319 r49500 350 350 WriteFile(GetStdHandle(STD_ERROR_HANDLE), pch, (DWORD)cch, &cbWrittenIgn, NULL); 351 351 #else 352 write(2, pch, cch);352 (void)write(2, pch, cch); 353 353 #endif 354 354 }
Note:
See TracChangeset
for help on using the changeset viewer.