Changeset 96584 in vbox for trunk/src/VBox/ValidationKit/utils/misc
- Timestamp:
- Sep 2, 2022 8:39:35 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/misc/loadgenerator.cpp
r96583 r96584 196 196 rc = RTStrToUInt64Ex(ValueUnion.psz, &psz, 0, &cNanoSeconds); 197 197 if (RT_FAILURE(rc)) 198 return RTMsgSyntax("Failed reading the alleged number '%s' (option '%s',rc=%Rrc).",198 return RTMsgSyntax("Failed reading the alleged timeout number '%s' (rc=%Rrc).", 199 199 ValueUnion.psz, rc); 200 200 while (*psz == ' ' || *psz == '\t') … … 218 218 if (u64 < cNanoSeconds || (u64 < u64Factor && u64)) 219 219 return RTMsgSyntax("Time representation overflowed! (%RU64 * %RU64)", 220 psz,cNanoSeconds, u64Factor);220 cNanoSeconds, u64Factor); 221 221 cNanoSeconds = u64; 222 222 }
Note:
See TracChangeset
for help on using the changeset viewer.