Changeset 68560 in vbox
- Timestamp:
- Aug 31, 2017 12:10:10 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 117777
- Location:
- trunk/src/VBox/Additions/WINNT/Mouse
- Files:
-
- 2 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 } -
trunk/src/VBox/Additions/WINNT/Mouse/common/VBoxMouseLog.h
r62522 r68560 19 19 #define VBOXMOUSELOG_H 20 20 21 #ifdef DEBUG_misha 22 # include <iprt/assert.h> 23 #endif 21 #include <VBox/log.h> 22 #include <iprt/assert.h> 24 23 25 24 #define VBOX_MOUSE_LOG_NAME "VBoxMouse" … … 47 46 } while (0) 48 47 49 #if def DEBUG_misha48 #if 1 /* Exclude yourself if you're not keen on this. */ 50 49 # define BREAK_WARN() AssertFailed() 51 50 #else
Note:
See TracChangeset
for help on using the changeset viewer.