regexp: Silence octal constant warning

This commit is contained in:
ZyX 2017-04-16 21:38:06 +03:00
parent b7118a008a
commit 30561afe41

View File

@ -3047,7 +3047,7 @@ static int getoctchrs(void)
int c;
int i;
for (i = 0; i < 3 && nr < 040; ++i) {
for (i = 0; i < 3 && nr < 040; i++) { // -V536
c = regparse[0];
if (c < '0' || c > '7')
break;