Changeset 17405 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Mar 5, 2009 2:54:49 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/log/log.cpp
r14435 r17405 1828 1828 /* how much */ 1829 1829 size_t cb = sizeof(pLogger->achScratch) - pLogger->offScratch - 1; 1830 1831 /* 1832 * Flush the buffer if there isn't enough room. 1833 */ 1834 if (cb < cbChars) 1835 { 1836 rtlogFlush(pLogger); 1837 cb = sizeof(pLogger->achScratch) - pLogger->offScratch - 1; 1838 } 1830 1839 if (cb > cbChars) 1831 1840 cb = cbChars; … … 1844 1853 1845 1854 pachChars += cb; 1846 1847 /* flush */1848 rtlogFlush(pLogger);1849 1855 } 1850 1856
Note:
See TracChangeset
for help on using the changeset viewer.