Changeset 69291 in vbox for trunk/src/bldprogs
- Timestamp:
- Oct 25, 2017 11:35:39 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 118612
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bldprogs/scmrw.cpp
r69286 r69291 1450 1450 { 1451 1451 const char *pszEol = strchr(psz, '\n'); 1452 size_t cch Line = pszEol ? pszEol - psz : strlen(psz);1452 size_t cchContribLine = pszEol ? pszEol - psz : strlen(psz); 1453 1453 ScmStreamWrite(pOut, g_aCopyrightCommentPrefix[enmCommentStyle].psz, 1454 1454 g_aCopyrightCommentPrefix[enmCommentStyle].cch); 1455 ScmStreamWrite(pOut, psz, cch Line);1455 ScmStreamWrite(pOut, psz, cchContribLine); 1456 1456 ScmStreamPutEol(pOut, enmEol); 1457 1457 if (!pszEol)
Note:
See TracChangeset
for help on using the changeset viewer.