diff options
author | Tanu Kaskinen <tanuk@iki.fi> | 2007-12-14 12:54:26 +0000 |
---|---|---|
committer | Tanu Kaskinen <tanuk@iki.fi> | 2007-12-14 12:54:26 +0000 |
commit | 8ed2a8c042f22131762dff91008cbe96d8337ae1 (patch) | |
tree | 3be3c268f41fc30537c2be4a678ce1889d0b5aa2 | |
parent | b94a6bc5b8328763c62a5b8687431b25c036b6dc (diff) |
Increase the maximum line length of default.pa from 256 to 1024. Load commands of modules that need multiple channel maps may grow rather long.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@2084 fefdeb5f-60dc-0310-8127-8f9354f1896f
-rw-r--r-- | src/pulsecore/cli-command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/cli-command.c b/src/pulsecore/cli-command.c index 9bd1b509..3110a271 100644 --- a/src/pulsecore/cli-command.c +++ b/src/pulsecore/cli-command.c @@ -1363,7 +1363,7 @@ int pa_cli_command_execute_line(pa_core *c, const char *s, pa_strbuf *buf, pa_bo } int pa_cli_command_execute_file(pa_core *c, const char *fn, pa_strbuf *buf, pa_bool_t *fail) { - char line[256]; + char line[1024]; FILE *f = NULL; int ifstate = IFSTATE_NONE; int ret = -1; |