Changeset 13838 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 5, 2008 3:16:55 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38830
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/HostUSBImpl.cpp
r13837 r13838 242 242 void *pvRemote = NULL; 243 243 244 LogFlowMember (("Console::AttachUSBDevice: Proxying USB device '%s' % Vuuid...\n", Address.c_str(), &Uuid));244 LogFlowMember (("Console::AttachUSBDevice: Proxying USB device '%s' %Ruuid...\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' % Vuuid, vrc=%Rrc\n", Address.c_str(),257 Log (("Console::AttachUSBDevice: Failed to create proxy device for '%s' %Ruuid, 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 % Vuuid...\n", &Uuid));303 LogFlowMember (("Console::DetachUSBDevice: Detaching USB proxy device %Ruuid...\n", &Uuid)); 304 304 PVMREQ pReq; 305 305 vrc = VMR3ReqCall (mpVM, VMREQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)pRhConfig->pfnDestroyProxyDevice, -
trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
r13837 r13838 709 709 rc = RTStrToInt32Ex(argv[curArg], NULL, 0, &g_aNetDevs[i].fd); 710 710 if (RT_FAILURE(rc)) 711 return SyntaxError("bad tap file descriptor: %s (error % VRc)\n", argv[curArg], rc);711 return SyntaxError("bad tap file descriptor: %s (error %Rrc)\n", argv[curArg], rc); 712 712 g_aNetDevs[i].fHaveFd = true; 713 713 } … … 722 722 rc = RTStrToInt32Ex(argv[curArg], NULL, 0, &portVRDP); 723 723 if (RT_FAILURE(rc)) 724 return SyntaxError("cannot vrpd port: %s (% VRc)\n", argv[curArg], rc);724 return SyntaxError("cannot vrpd port: %s (%Rrc)\n", argv[curArg], rc); 725 725 if (portVRDP < 0 || portVRDP >= 0x10000) 726 726 return SyntaxError("vrdp port number is out of range: %RI32\n", portVRDP); -
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r13837 r13838 2813 2813 machine->COMGETTER(Name)(name.asOutParam()); 2814 2814 machine->COMGETTER(Id)(uuid.asOutParam()); 2815 RTPrintf("%s%lS (UUID: % Vuuid)\n",2815 RTPrintf("%s%lS (UUID: %Ruuid)\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: % Vuuid)\n",6505 RTPrintf("%s%lS (UUID: %Ruuid)\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.