- Timestamp:
- Mar 5, 2009 4:29:02 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/log/log.cpp
r17405 r17416 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 }1839 1830 if (cb > cbChars) 1840 1831 cb = cbChars; … … 1853 1844 1854 1845 pachChars += cb; 1846 1847 /* flush */ 1848 rtlogFlush(pLogger); 1855 1849 } 1856 1850
Note:
See TracChangeset
for help on using the changeset viewer.