Changeset 42267 in vbox for trunk/include/VBox
- Timestamp:
- Jul 20, 2012 2:28:16 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 79323
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/Service.h
r42266 r42267 36 36 #include <memory> /* for auto_ptr */ 37 37 38 #include <iprt/stream.h> /* remove */39 40 38 namespace HGCM 41 39 { … … 65 63 LogFlowFunc(("Message type does not match (%u (buffer), %u (guest))\n", 66 64 m_uMsg, uMsg)); 67 RTPrintf("Message type does not match (%u (buffer), %u (guest))\n",68 m_uMsg, uMsg);69 65 return VERR_INVALID_PARAMETER; 70 66 } … … 73 69 LogFlowFunc(("Parameter count does not match (%u (buffer), %u (guest))\n", 74 70 m_cParms, cParms)); 75 RTPrintf("Parameter count does not match (%u (buffer), %u (guest))\n",76 m_cParms, cParms);77 71 return VERR_INVALID_PARAMETER; 78 72 }
Note:
See TracChangeset
for help on using the changeset viewer.