File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1051,7 +1051,7 @@ static BOOL
1051
1051
validate_version (wchar_t * p )
1052
1052
{
1053
1053
/*
1054
- Version information should start with one of 2 or 3 ,
1054
+ Version information should start with the major version ,
1055
1055
Optionally followed by a period and a minor version,
1056
1056
Optionally followed by a minus and one of 32 or 64.
1057
1057
Valid examples:
@@ -1068,7 +1068,7 @@ validate_version(wchar_t * p)
1068
1068
*/
1069
1069
BOOL result = (p != NULL ); /* Default to False if null pointer. */
1070
1070
1071
- result = result && iswdigit (* p ); /* Result = False if fist string element is not a digit. */
1071
+ result = result && iswdigit (* p ); /* Result = False if first string element is not a digit. */
1072
1072
1073
1073
while (result && iswdigit (* p )) /* Require a major version */
1074
1074
++ p ; /* Skip all leading digit(s) */
You can’t perform that action at this time.
0 commit comments