Changeset 13842 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 5, 2008 3:46:01 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38834
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/HostUSBImpl.cpp
r13838 r13842 242 242 void *pvRemote = NULL; 243 243 244 LogFlowMember (("Console::AttachUSBDevice: Proxying USB device '%s' %R uuid...\n", Address.c_str(), &Uuid));244 LogFlowMember (("Console::AttachUSBDevice: Proxying USB device '%s' %RTuuid...\n", Address.c_str(), &Uuid)); 245 245 PVMREQ pReq; 246 246 vrc = VMR3ReqCall (mpVM, VMREQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, … … 255 255 else 256 256 { 257 Log (("Console::AttachUSBDevice: Failed to create proxy device for '%s' %R uuid, vrc=%Rrc\n", Address.c_str(),257 Log (("Console::AttachUSBDevice: Failed to create proxy device for '%s' %RTuuid, vrc=%Rrc\n", Address.c_str(), 258 258 &Uuid, vrc)); 259 259 AssertRC (vrc); … … 301 301 302 302 RTUUID Uuid = aDevice->id(); 303 LogFlowMember (("Console::DetachUSBDevice: Detaching USB proxy device %R uuid...\n", &Uuid));303 LogFlowMember (("Console::DetachUSBDevice: Detaching USB proxy device %RTuuid...\n", &Uuid)); 304 304 PVMREQ pReq; 305 305 vrc = VMR3ReqCall (mpVM, VMREQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)pRhConfig->pfnDestroyProxyDevice, -
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r13838 r13842 2813 2813 machine->COMGETTER(Name)(name.asOutParam()); 2814 2814 machine->COMGETTER(Id)(uuid.asOutParam()); 2815 RTPrintf("%s%lS (UUID: %R uuid)\n",2815 RTPrintf("%s%lS (UUID: %RTuuid)\n", 2816 2816 j == 0 ? "Usage: " : " ", 2817 2817 name.raw(), &machineIds[j]); … … 6503 6503 machine->COMGETTER(Name)(name.asOutParam()); 6504 6504 machine->COMGETTER(Id)(uuid.asOutParam()); 6505 RTPrintf("%s%lS (UUID: %R uuid)\n",6505 RTPrintf("%s%lS (UUID: %RTuuid)\n", 6506 6506 j == 0 ? "In use by VMs: " : " ", 6507 6507 name.raw(), &machineIds[j]);
Note:
See TracChangeset
for help on using the changeset viewer.