Fix typo in VMS code in pcre2test.

This commit is contained in:
Philip.Hazel 2017-08-28 14:59:04 +00:00
parent 72716c1f21
commit 3cd616c3a9
2 changed files with 7 additions and 1 deletions

View File

@ -2,6 +2,12 @@ Change Log for PCRE2
--------------------
Version 10.31 xx-xxx-201x
-------------------------
1. Fix typo (missing ]) in VMS code in pcre2test.c.
Version 10.30 14-August-2017
----------------------------

View File

@ -7787,7 +7787,7 @@ if (arg != NULL)
{
char ucname[16];
strcpy(ucname, coptlist[i].name);
for (i = 0; ucname[i] != 0; i++) ucname[i] = toupper[ucname[i];
for (i = 0; ucname[i] != 0; i++) ucname[i] = toupper[ucname[i]];
vms_setsymbol(ucname, 0, optval);
}
#endif