filter: Fix wrong indentation
I accidentally used tabs instead of spaces. This commit fixes this.
This commit is contained in:
parent
fffe45cae1
commit
ba5c7efafb
@ -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')
|
||||||
|
Loading…
Reference in New Issue
Block a user