Changeset 68937 in vbox
- Timestamp:
- Sep 29, 2017 4:13:21 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/getopt.cpp
r68936 r68937 434 434 if (pszValue != pszNext) \ 435 435 { \ 436 u nsigned uBase = pszValue[0] == '0' \437 438 439 436 uBase = pszValue[0] == '0' \ 437 && (pszValue[1] == 'x' || pszValue[1] == 'X') \ 438 && RT_C_IS_XDIGIT(pszValue[2]) \ 439 ? 16 : a_ConvBase; \ 440 440 rc = a_fnConv(pszValue, &pszNext, uBase, &Value2); \ 441 441 if (rc == VINF_SUCCESS) \
Note:
See TracChangeset
for help on using the changeset viewer.