Skip to content

Commit 776834b

Browse files
committed
Merge branch 'master' of github.com:doxygen/doxygen
2 parents 1040db6 + 70ce875 commit 776834b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pre.l

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4089,8 +4089,8 @@ void Preprocessor::processFile(const QCString &fileName,const std::string &input
40894089
{
40904090
if (startOfLine)
40914091
{
4092-
char lineNrStr[10];
4093-
snprintf(lineNrStr,10,"%05d ",line++);
4092+
char lineNrStr[15];
4093+
snprintf(lineNrStr,15,"%05d ",line++);
40944094
contents+=lineNrStr;
40954095
}
40964096
contents += output[pos];

0 commit comments

Comments
 (0)