- Timestamp:
- Sep 17, 2007 2:55:39 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/assert.cpp
r4071 r4856 123 123 "Expression: %s\n" 124 124 "Location : %s(%d) %s\n", 125 pszExpr, pszFile, uLine, pszFunction); 125 VALID_PTR(pszExpr) ? pszExpr : "<none>", 126 VALID_PTR(pszFile) ? pszFile : "<none>", 127 uLine, 128 VALID_PTR(pszFunction) ? pszFunction : ""); 126 129 fflush(stderr); 127 130 #endif
Note:
See TracChangeset
for help on using the changeset viewer.