checksrc: warn on space after exclamation mark

Closes #6034
This commit is contained in:
Daniel Stenberg 2020-10-02 10:58:52 +02:00
parent ddecd28268
commit 26a7d51c21
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
7 changed files with 18 additions and 11 deletions

View file

@ -878,7 +878,7 @@ static int dprintf_formatf(
OUTCHAR(' ');
for(point = strnil; *point != '\0'; ++point)
OUTCHAR(*point);
if(! (p->flags & FLAGS_LEFT))
if(!(p->flags & FLAGS_LEFT))
while(width-- > 0)
OUTCHAR(' ');
}