Changeset 12719 in vbox
- Timestamp:
- Sep 25, 2008 11:36:07 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxControl/VBoxControl.cpp
r11822 r12719 1068 1068 rc = VbglR3GuestPropConnect(&u32ClientId); 1069 1069 if (!RT_SUCCESS(rc)) 1070 VBoxControlError("Failed to connect to the guest property service , error%Rrc\n", rc);1070 VBoxControlError("Failed to connect to the guest property service! Error: %Rrc\n", rc); 1071 1071 if (RT_SUCCESS(rc)) 1072 1072 { … … 1082 1082 RTPrintf("No properties found.\n"); 1083 1083 else 1084 VBoxControlError("Failed to enumerate the guest properties , error %Rrc.\n", rc);1084 VBoxControlError("Failed to enumerate the guest properties! Error: %Rrc\n", rc); 1085 1085 } 1086 1086 while (RT_SUCCESS(rc) && (pszName != NULL)) … … 1090 1090 rc = VbglR3GuestPropEnumNext(Handle.get(), &pszName, &pszValue, &u64Timestamp, &pszFlags); 1091 1091 if (!RT_SUCCESS(rc)) 1092 VBoxControlError("Error while enumerating guest propertie d: %Rrc\n", rc);1092 VBoxControlError("Error while enumerating guest properties: %Rrc\n", rc); 1093 1093 } 1094 1094
Note:
See TracChangeset
for help on using the changeset viewer.