From 270910b82218a840b99b72859b308451c73c5c1b Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Thu, 3 Jan 2013 14:45:38 -0500 Subject: show description in list-short --- ponymix.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ponymix.cc b/ponymix.cc index 459305f..fc20315 100644 --- a/ponymix.cc +++ b/ponymix.cc @@ -98,10 +98,11 @@ static Device* string_to_device_or_die(PulseClient& ponymix, static void Print(const Device& device, bool shirt) { if (shirt) { - printf("%s\t%d\t%s\n", + printf("%s\t%d\t%s\t%s\n", type_to_string(device.Type()), device.Index(), - device.Name().c_str()); + device.Name().c_str(), + device.Desc().c_str()); return; } -- cgit v1.2.3