Changeset 17410 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Mar 5, 2009 3:15:04 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/assert.cpp
r17348 r17410 131 131 "Location : %s(%d) %s\n", 132 132 pszExpr, pszFile, uLine, pszFunction); 133 #ifndef IN_RC /* flushing is done automatically in RC */ 133 134 RTLogFlush(pLog); 135 #endif 134 136 } 135 137 … … 145 147 "Location : %s(%d) %s\n", 146 148 pszExpr, pszFile, uLine, pszFunction); 149 #ifndef IN_RC /* flushing is done automatically in RC */ 147 150 RTLogFlush(pLog); 151 #endif 148 152 } 149 153 } … … 193 197 RTLogRelPrintfV(pszFormat, args); 194 198 va_end(args); 199 #ifndef IN_RC /* flushing is done automatically in RC */ 195 200 RTLogFlush(pLog); 201 #endif 196 202 } 197 203 … … 202 208 RTLogPrintfV(pszFormat, args); 203 209 va_end(args); 210 #ifndef IN_RC /* flushing is done automatically in RC */ 204 211 RTLogFlush(pLog); 212 #endif 205 213 } 206 214
Note:
See TracChangeset
for help on using the changeset viewer.