diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-12-20 10:14:47 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-12-20 10:14:47 +0100 |
commit | d6bc83ee3adc13c9ffe2a972c00061d02c7345a7 (patch) | |
tree | ab0532910f008f6cd3df14b822f30a00a93e6191 | |
parent | e2e7ba1a6e74b33fe79d2f46e961d383200f458e (diff) | |
download | pa-sink-ctl-d6bc83ee3adc13c9ffe2a972c00061d02c7345a7.tar.gz pa-sink-ctl-d6bc83ee3adc13c9ffe2a972c00061d02c7345a7.tar.bz2 pa-sink-ctl-d6bc83ee3adc13c9ffe2a972c00061d02c7345a7.zip |
Fix indents and leading whitespace
-rw-r--r-- | src/config.c | 6 | ||||
-rw-r--r-- | src/pa-sink-ctl.c | 14 |
2 files changed, 10 insertions, 10 deletions
diff --git a/src/config.c b/src/config.c index 34ccc90..e9b5ba1 100644 --- a/src/config.c +++ b/src/config.c @@ -175,9 +175,9 @@ config_init(struct config *cfg) break; } if (error) { - g_printerr("Failed to open config file: %s\n", - error->message); - return -1; + g_printerr("Failed to open config file: %s\n", + error->message); + return -1; } if (read_settings(cfg) < 0) diff --git a/src/pa-sink-ctl.c b/src/pa-sink-ctl.c index 68c7a0c..181ccaa 100644 --- a/src/pa-sink-ctl.c +++ b/src/pa-sink-ctl.c @@ -100,7 +100,7 @@ main_ctl_prev_ctl(struct vol_ctl *ctl) { struct main_ctl *mctl = (struct main_ctl *) ctl; GList *el, *prev; - + el = g_list_find(*mctl->list, mctl); if (el == NULL) return NULL; @@ -114,7 +114,7 @@ main_ctl_next_ctl(struct vol_ctl *ctl) { struct main_ctl *mctl = (struct main_ctl *) ctl; GList *el, *next; - + el = g_list_find(*mctl->list, mctl); if (el == NULL) return NULL; @@ -234,7 +234,7 @@ source_info_cb(pa_context *c, const pa_source_info *i, source->priority = get_priority(ctx, i->proplist); ctx->source_list = g_list_insert_sorted(ctx->source_list, source, - /*FIXME*/compare_sink_priority); + /*FIXME*/compare_sink_priority); } else { source = el->data; g_free(source->base.name); @@ -264,7 +264,7 @@ slave_ctl_prev_ctl(struct vol_ctl *ctl) { struct slave_ctl *sctl = (struct slave_ctl *) ctl; GList *el, *prev; - + el = g_list_find(*sctl->list, sctl); if (el == NULL) return NULL; @@ -283,7 +283,7 @@ slave_ctl_next_ctl(struct vol_ctl *ctl) { struct slave_ctl *sctl = (struct slave_ctl *) ctl; GList *el, *next; - + el = g_list_find(*sctl->list, sctl); if (el == NULL) return NULL; @@ -354,7 +354,7 @@ sink_input_info_cb(pa_context *c, const pa_sink_input_info *i, static void source_output_info_cb(pa_context *c, const pa_source_output_info *i, - gint is_last, gpointer userdata) + gint is_last, gpointer userdata) { struct context *ctx = userdata; struct slave_ctl *source_output; @@ -580,7 +580,7 @@ main(int argc, char** argv) ctx.loop = g_main_loop_new(NULL, FALSE); if (!ctx.loop) goto cleanup_context; - + if (config_init(&ctx.config) < 0) goto cleanup_loop; |