epp: Fix potential compiler warning

This commit is contained in:
Kim Woelders 2022-04-23 12:54:27 +02:00
parent 3ad01fdda7
commit f812edf7fe
1 changed files with 1 additions and 1 deletions

View File

@ -2372,7 +2372,7 @@ special_symbol(HASHNODE * hp, cpp_reader * pfile)
if (ip->fname)
true_indepth++;
bufx = (char *)alloca(8); /* Eight bytes ought to be more than enough */
bufx = (char *)alloca(12);
sprintf(bufx, "%d", true_indepth - 1);
buf = bufx;
break;