diff options
author | Lennart Poettering <lennart@poettering.net> | 2007-08-31 00:51:26 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2007-08-31 00:51:26 +0000 |
commit | a1322269d5e1ea76eae07cd62ea0b70ff384e9c5 (patch) | |
tree | 16ccc2420c09de7ea85dce932aeff6a88e2d4ffb | |
parent | 6eb2f88c5dc4c74634774aa242961b1630c0419c (diff) |
minor reformatting
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1738 fefdeb5f-60dc-0310-8127-8f9354f1896f
-rw-r--r-- | src/pulsecore/cli-command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pulsecore/cli-command.c b/src/pulsecore/cli-command.c index 7440e744..0cd1f483 100644 --- a/src/pulsecore/cli-command.c +++ b/src/pulsecore/cli-command.c @@ -1131,9 +1131,9 @@ int pa_cli_command_execute_line_stateful(pa_core *c, const char *s, pa_strbuf *b if (l == sizeof(META_INCLUDE)-1 && !strncmp(cs, META_INCLUDE, l)) { const char *filename = cs+l+strspn(cs+l, whitespace); - if (pa_cli_command_execute_file(c, filename, buf, fail) < 0) - if (*fail) return -1; + if (*fail) + return -1; } else if (l == sizeof(META_IFEXISTS)-1 && !strncmp(cs, META_IFEXISTS, l)) { if (!ifstate) { pa_strbuf_printf(buf, "Meta command %s is not valid in this context\n", cs); |