Avoid model warning for C if compat flag lt is set.
This commit is contained in:
parent
1266225cdb
commit
db5395032f
|
|
@ -2279,7 +2279,8 @@ static int is_a_modelname(const char *s)
|
||||||
st = st + 5;
|
st = st + 5;
|
||||||
else if ((*st == 'f') || (*st == 'h'))
|
else if ((*st == 'f') || (*st == 'h'))
|
||||||
st = st + 1;
|
st = st + 1;
|
||||||
|
else if (newcompat.lt && isdigit_c(*st)) /* 4k7 */
|
||||||
|
return FALSE;
|
||||||
if (*st == '\0' || isspace_c(*st)) {
|
if (*st == '\0' || isspace_c(*st)) {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue