Changeset 21381 in vbox for trunk/src/VBox/Runtime/common/log/log.cpp
- Timestamp:
- Jul 8, 2009 9:07:47 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49740
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/log/log.cpp
r21377 r21381 1525 1525 while (*pszVar) 1526 1526 { 1527 bool fNo; 1528 unsigned i; 1529 1527 1530 /* skip blanks. */ 1528 1531 while (RT_C_IS_SPACE(*pszVar)) … … 1532 1535 1533 1536 /* check no prefix. */ 1534 boolfNo = false;1537 fNo = false; 1535 1538 if (pszVar[0] == 'n' && pszVar[1] == 'o') 1536 1539 { … … 1540 1543 1541 1544 /* instruction. */ 1542 unsigned i;1543 1545 for (i = 0; i < RT_ELEMENTS(s_aLogDst); i++) 1544 1546 { … … 1557 1559 if (*pszVar == '=' || *pszVar == ':') 1558 1560 { 1561 const char *pszEnd; 1562 1559 1563 pszVar++; 1560 const char *pszEnd = strchr(pszVar, ';');1564 pszEnd = strchr(pszVar, ';'); 1561 1565 if (!pszEnd) 1562 1566 pszEnd = strchr(pszVar, '\0');
Note:
See TracChangeset
for help on using the changeset viewer.