style fix
This commit is contained in:
parent
90eab249cd
commit
aa2a1444d8
@ -499,7 +499,7 @@ static bool issrcfile(char *path) {
|
|||||||
bool looks_like_source = false;
|
bool looks_like_source = false;
|
||||||
|
|
||||||
/* ensure there is some file suffix */
|
/* ensure there is some file suffix */
|
||||||
if(s == NULL || *++s == '\0') return false;
|
if(s == NULL || *(++s) == '\0') { return false; }
|
||||||
|
|
||||||
/* if an SCCS or versioned file */
|
/* if an SCCS or versioned file */
|
||||||
if(file[1] == '.' && file + 2 != s) { /* 1 character prefix */
|
if(file[1] == '.' && file + 2 != s) { /* 1 character prefix */
|
||||||
|
Loading…
Reference in New Issue
Block a user