Changeset 22793 in vbox for trunk/src/VBox/Frontends/VBoxBFE
- Timestamp:
- Sep 5, 2009 1:29:24 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 51986
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/VMMDevInterface.cpp
r22480 r22793 318 318 * @param pSSM SSM operation handle. 319 319 * @param uVersion Data layout version. 320 * @param uP hase The data phase.321 */ 322 static DECLCALLBACK(int) iface_hgcmLoad(PPDMDRVINS pDrvIns, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uP hase)320 * @param uPass The data pass. 321 */ 322 static DECLCALLBACK(int) iface_hgcmLoad(PPDMDRVINS pDrvIns, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass) 323 323 { 324 324 LogFlowFunc(("Enter\n")); … … 326 326 if (uVersion != HGCM_SSM_VERSION) 327 327 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION; 328 Assert(uP hase == SSM_PHASE_FINAL); NOREF(uPhase);328 Assert(uPass == SSM_PASS_FINAL); NOREF(uPass); 329 329 330 330 return HGCMHostLoadState (pSSM);
Note:
See TracChangeset
for help on using the changeset viewer.