Changeset 45902 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- May 6, 2013 7:42:36 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85525
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxTray.cpp
r45901 r45902 828 828 if (!RT_SUCCESS(rc)) 829 829 { 830 WARN(("VBoxTray: vboxStInit failed, rc %d "));830 WARN(("VBoxTray: vboxStInit failed, rc %d\n")); 831 831 /* ignore the St Init failure. this can happen for < XP win that do not support WTS API 832 832 * in that case the session is treated as active connected to the physical console … … 838 838 if (!RT_SUCCESS(rc)) 839 839 { 840 WARN(("VBoxTray: vboxDtInit failed, rc %d "));840 WARN(("VBoxTray: vboxDtInit failed, rc %d\n")); 841 841 /* ignore the Dt Init failure. this can happen for < XP win that do not support WTS API 842 842 * in that case the session is treated as active connected to the physical console … … 1167 1167 VBOXST_DBG_MAKECASE(WTS_SESSION_REMOTE_CONTROL); 1168 1168 default: 1169 WARN(("VBoxTray: invalid WTS state %d ", val));1169 WARN(("VBoxTray: invalid WTS state %d\n", val)); 1170 1170 return "Unknown"; 1171 1171 } … … 1436 1436 { 1437 1437 DWORD LastErr = GetLastError(); 1438 WARN(("DeviceIoControl VBOXGUEST_IOCTL_GUEST_CAPS_ACQUIRE failed LastErr %d ", LastErr));1438 WARN(("DeviceIoControl VBOXGUEST_IOCTL_GUEST_CAPS_ACQUIRE failed LastErr %d\n", LastErr)); 1439 1439 return RTErrConvertFromWin32(LastErr); 1440 1440 } … … 1443 1443 if (!RT_SUCCESS(rc)) 1444 1444 { 1445 WARN(("VBOXGUEST_IOCTL_GUEST_CAPS_ACQUIRE failed rc %d ", rc));1445 WARN(("VBOXGUEST_IOCTL_GUEST_CAPS_ACQUIRE failed rc %d\n", rc)); 1446 1446 return rc; 1447 1447 }
Note:
See TracChangeset
for help on using the changeset viewer.