Changeset 68560 in vbox for trunk/src/VBox/Additions/WINNT/Mouse/NT5/VBoxMFInternal.cpp
- Timestamp:
- Aug 31, 2017 12:10:10 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Mouse/NT5/VBoxMFInternal.cpp
r68556 r68560 295 295 if (!NT_SUCCESS(rc)) 296 296 { 297 WARN(("IoGetDeviceProperty failed with rc=%#x", rc)); 297 if (rc == STATUS_OBJECT_NAME_NOT_FOUND) /* This happen when loading on a running system, don't want the assertion. */ 298 LOG(("IoGetDeviceProperty failed with STATUS_OBJECT_NAME_NOT_FOUND")); 299 else 300 WARN(("IoGetDeviceProperty failed with rc=%#x", rc)); 298 301 return; 299 302 }
Note:
See TracChangeset
for help on using the changeset viewer.