Changeset 95095 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- May 25, 2022 12:18:24 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/testi.cpp
r93115 r95095 182 182 183 183 184 RTR3DECL(int) RTTest ErrContext(const char *pszFormat, ...)185 { 186 va_list va; 187 va_start(va, pszFormat); 188 int rc = RTTest IErrContextV(pszFormat, va);184 RTR3DECL(int) RTTestIErrContext(const char *pszFormat, ...) 185 { 186 va_list va; 187 va_start(va, pszFormat); 188 int rc = RTTestErrContextV(NIL_RTTEST, pszFormat, va); 189 189 va_end(va); 190 190 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.