mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
suppress lines made up only of whitespace
This commit is contained in:
parent
e6f4586f7b
commit
2557017178
1 changed files with 2 additions and 1 deletions
|
|
@ -278,7 +278,8 @@ void pa_log_levelv_meta(
|
||||||
n++;
|
n++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!*t)
|
/* We ignore strings only made out of whitespace */
|
||||||
|
if (t[strspn(t, "\t ")] == 0)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
switch (log_target) {
|
switch (log_target) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue