style fix

This commit is contained in:
anon 2023-09-03 00:18:22 +02:00
parent 90eab249cd
commit aa2a1444d8

View File

@ -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 */