filter: Fix wrong indentation

I accidentally used tabs instead of spaces.
This commit fixes this.
This commit is contained in:
Janosch Hoffmann 2019-05-05 17:24:11 +02:00
parent fffe45cae1
commit ba5c7efafb

View File

@ -77,7 +77,7 @@ void filter_init (void)
s = buf; s = buf;
while (*s && isspace ((unsigned char) *s)) while (*s && isspace ((unsigned char) *s))
s++; s++;
start = s; start = s;
/* /*
* Remove any trailing white space and * Remove any trailing white space and
@ -98,7 +98,7 @@ void filter_init (void)
++s; ++s;
} }
*s = '\0'; *s = '\0';
s = start; s = start;
/* skip blank lines and comments */ /* skip blank lines and comments */
if (*s == '\0') if (*s == '\0')