Changeset 94763 in vbox for trunk/src/VBox/VMM/testcase/tstSSM.cpp
- Timestamp:
- Apr 29, 2022 4:36:29 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151148
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/testcase/tstSSM.cpp
r93554 r94763 806 806 */ 807 807 u64Start = RTTimeNanoTS(); 808 rc = SSMR3ValidateFile(pszFilename, false /* fChecksumIt*/ );808 rc = SSMR3ValidateFile(pszFilename, NULL /*pStreamOps*/, NULL /*pvStreamOps*/, false /* fChecksumIt*/ ); 809 809 if (RT_FAILURE(rc)) 810 810 { … … 816 816 817 817 u64Start = RTTimeNanoTS(); 818 rc = SSMR3ValidateFile(pszFilename, true /* fChecksumIt */);818 rc = SSMR3ValidateFile(pszFilename, NULL /*pStreamOps*/, NULL /*pvStreamOps*/, true /* fChecksumIt */); 819 819 if (RT_FAILURE(rc)) 820 820 { … … 830 830 u64Start = RTTimeNanoTS(); 831 831 PSSMHANDLE pSSM; 832 rc = SSMR3Open(pszFilename, 0, &pSSM);832 rc = SSMR3Open(pszFilename, NULL /*pStreamOps*/, NULL /*pvStreamOps*/, 0, &pSSM); 833 833 if (RT_FAILURE(rc)) 834 834 {
Note:
See TracChangeset
for help on using the changeset viewer.