Changeset 83820 in vbox for trunk/src/VBox/Main/testcase
- Timestamp:
- Apr 19, 2020 1:08:36 AM (5 years ago)
- Location:
- trunk/src/VBox/Main/testcase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/testcase/msiDarwinDescriptorDecoder.cpp
r82968 r83820 54 54 " -> FeatureId=%ls\n" 55 55 " -> ComponentCode=%ls\n" 56 " -> offArguments=%# x (%d)\n"56 " -> offArguments=%#lx (%ld)\n" 57 57 , iArg, papwszArgs[iArg], wszProductCode, wszFeatureId, wszComponentCode, offArguments, offArguments); 58 58 } … … 61 61 fprintf(stderr, 62 62 "#%u: '%ls'\n" 63 " -> error % u (%#x)\n"63 " -> error %lu (%#lx)\n" 64 64 , iArg, papwszArgs[iArg], dwErr, dwErr); 65 65 rcExit = 1; -
trunk/src/VBox/Main/testcase/tstVBoxAPIWin.cpp
r82968 r83820 117 117 118 118 if (FAILED(rc)) 119 printf("Error getting error info! rc = 0x%x\n", rc);119 printf("Error getting error info! rc=%#lx\n", rc); 120 120 else 121 121 { … … 125 125 126 126 if (FAILED(rc) || !errorDescription) 127 printf("Error getting error description! rc = 0x%x\n", rc);127 printf("Error getting error description! rc=%#lx\n", rc); 128 128 else 129 129 { … … 161 161 162 162 if (FAILED(rc)) 163 printf("Error getting error info! rc = 0x%x\n", rc);163 printf("Error getting error info! rc=%#lx\n", rc); 164 164 else 165 165 { … … 169 169 170 170 if (FAILED(rc) || !errorDescription) 171 printf("Error getting error description! rc = 0x%x\n", rc);171 printf("Error getting error description! rc=%#lx\n", rc); 172 172 else 173 173 { … … 193 193 if (!SUCCEEDED(rc)) 194 194 { 195 printf("Error retrieving machine ID! rc = 0x%x\n", rc);195 printf("Error retrieving machine ID! rc=%#lx\n", rc); 196 196 break; 197 197 } … … 205 205 if (!SUCCEEDED(rc)) 206 206 { 207 printf("Error creating Session instance! rc = 0x%x\n", rc);207 printf("Error creating Session instance! rc=%#lx\n", rc); 208 208 break; 209 209 } … … 214 214 if (!SUCCEEDED(rc)) 215 215 { 216 printf("Could not open remote session! rc = 0x%x\n", rc);216 printf("Could not open remote session! rc=%#lx\n", rc); 217 217 break; 218 218 } … … 287 287 } 288 288 else 289 printf("Error creating VirtualBox instance! rc = 0x%x\n", rc);289 printf("Error creating VirtualBox instance! rc=%#lx\n", rc); 290 290 } 291 291
Note:
See TracChangeset
for help on using the changeset viewer.