From 46daf142fe46b42ab75f0cc37480e74f7efc12e2 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Sun, 18 Dec 2011 21:44:57 +0100 Subject: Rename sink{,_input}_info to sink{,input} --- src/command.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/command.c') diff --git a/src/command.c b/src/command.c index ddb0816..425d484 100644 --- a/src/command.c +++ b/src/command.c @@ -25,9 +25,9 @@ #include "command.h" static int -sink_input_len(struct context *ctx, struct sink_info *sink) +sink_input_len(struct context *ctx, struct sink *sink) { - struct sink_input_info *input; + struct sink_input *input; int len = 0; list_foreach(ctx->input_list, input) @@ -41,7 +41,7 @@ static void up(struct context *ctx, int key) { struct interface *ifc = &ctx->interface; - struct sink_info *sink = NULL; + struct sink *sink = NULL; if (!ctx->context_ready) return; @@ -61,7 +61,7 @@ static void down(struct context *ctx, int key) { struct interface *ifc = &ctx->interface; - struct sink_info *sink; + struct sink *sink; if (!ctx->context_ready) return; @@ -143,7 +143,7 @@ static void switch_sink(struct context *ctx, int key) { struct interface *ifc = &ctx->interface; - struct sink_input_info *t; + struct sink_input *t; struct vol_ctl *input, *sink; pa_operation *o; gint i; -- cgit