summaryrefslogtreecommitdiffstats
path: root/polyp/pactl.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-01-08 22:32:53 +0000
committerLennart Poettering <lennart@poettering.net>2005-01-08 22:32:53 +0000
commit474b5683e957471d060ee030e5c19a6f6d73a1a2 (patch)
tree849dc0ca6955a08befb5e56b290d89fb154eebbf /polyp/pactl.c
parent6911d7e981c9314ea62ec5fe5adf6bec1d4f7f4f (diff)
* todo update
* lirc warning fix * c++ compat git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@336 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'polyp/pactl.c')
-rw-r--r--polyp/pactl.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/polyp/pactl.c b/polyp/pactl.c
index d4dc6ad1..423cce95 100644
--- a/polyp/pactl.c
+++ b/polyp/pactl.c
@@ -181,7 +181,7 @@ static void get_sink_info_callback(struct pa_context *c, const struct pa_sink_in
"Latency: %0.0f usec\n",
i->index,
i->name,
- pa_typeid_to_string(i->typeid, tid, sizeof(tid)),
+ pa_typeid_to_string(i->_typeid, tid, sizeof(tid)),
i->description,
s,
i->owner_module,
@@ -224,7 +224,7 @@ static void get_source_info_callback(struct pa_context *c, const struct pa_sourc
"Monitor of Sink: %s\n"
"Latency: %0.0f usec\n",
i->index,
- pa_typeid_to_string(i->typeid, tid, sizeof(tid)),
+ pa_typeid_to_string(i->_typeid, tid, sizeof(tid)),
i->name,
i->description,
s,
@@ -296,7 +296,7 @@ static void get_client_info_callback(struct pa_context *c, const struct pa_clien
"Owner Module: %s\n",
i->index,
i->name,
- pa_typeid_to_string(i->typeid, tid, sizeof(tid)),
+ pa_typeid_to_string(i->_typeid, tid, sizeof(tid)),
i->owner_module != PA_INVALID_INDEX ? t : "n/a");
}
@@ -337,7 +337,7 @@ static void get_sink_input_info_callback(struct pa_context *c, const struct pa_s
"Resample method: %s\n",
i->index,
i->name,
- pa_typeid_to_string(i->typeid, tid, sizeof(tid)),
+ pa_typeid_to_string(i->_typeid, tid, sizeof(tid)),
i->owner_module != PA_INVALID_INDEX ? t : "n/a",
i->client != PA_INVALID_INDEX ? k : "n/a",
i->sink,
@@ -385,7 +385,7 @@ static void get_source_output_info_callback(struct pa_context *c, const struct p
"Resample method: %s\n",
i->index,
i->name,
- pa_typeid_to_string(i->typeid, tid, sizeof(tid)),
+ pa_typeid_to_string(i->_typeid, tid, sizeof(tid)),
i->owner_module != PA_INVALID_INDEX ? t : "n/a",
i->client != PA_INVALID_INDEX ? k : "n/a",
i->source,