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/interface.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/interface.c') diff --git a/src/interface.c b/src/interface.c index d6fa085..ddd1bb6 100644 --- a/src/interface.c +++ b/src/interface.c @@ -38,10 +38,10 @@ #include "unix_signal.h" #endif -static struct sink_input_info * -sink_get_nth_input(struct context *ctx, struct sink_info *sink, int n) +static struct sink_input * +sink_get_nth_input(struct context *ctx, struct sink *sink, int n) { - struct sink_input_info *input; + struct sink_input *input; int i = 0; list_foreach(ctx->input_list, input) { @@ -58,8 +58,8 @@ struct vol_ctl * interface_get_current_ctl(struct interface *ifc, struct vol_ctl **parent) { struct context *ctx = container_of(ifc, struct context, interface); - struct sink_info *sink; - struct sink_input_info *input; + struct sink *sink; + struct sink_input *input; if (parent) *parent = NULL; -- cgit