aboutsummaryrefslogtreecommitdiffstats
path: root/ponymix.cc
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2013-01-01 22:48:02 -0500
committerDave Reisner <dreisner@archlinux.org>2013-01-01 22:48:02 -0500
commita6d5dd764d5b30ebf90af523986452d34834d7bd (patch)
tree4e62ff456a5a1576385bf49f0f5f133e7f7eb48f /ponymix.cc
parent4268c55004a2f942bd48e114422fc88cec0c6bc2 (diff)
downloadmirror-ponymix-a6d5dd764d5b30ebf90af523986452d34834d7bd.tar.gz
mirror-ponymix-a6d5dd764d5b30ebf90af523986452d34834d7bd.tar.bz2
mirror-ponymix-a6d5dd764d5b30ebf90af523986452d34834d7bd.zip
eschew _unused_ attribute
Diffstat (limited to 'ponymix.cc')
-rw-r--r--ponymix.cc32
1 files changed, 14 insertions, 18 deletions
diff --git a/ponymix.cc b/ponymix.cc
index d5b807f..1f124df 100644
--- a/ponymix.cc
+++ b/ponymix.cc
@@ -7,8 +7,6 @@
#include <map>
#include <stdexcept>
-#define _unused_ __attribute__((unused))
-
enum Action {
ACTION_DEFAULTS,
ACTION_LIST,
@@ -148,16 +146,14 @@ static void Print(const Profile& profile, bool active) {
profile.name.c_str(), profile.desc.c_str(), active ? " [active]" : "");
}
-static int ShowDefaults(Pulse& ponymix,
- int argc _unused_,
- char* argv[] _unused_) {
+static int ShowDefaults(Pulse& ponymix, int, char*[]) {
const auto& info = ponymix.GetDefaults();
Print(*ponymix.GetSink(info.sink));
Print(*ponymix.GetSource(info.source));
return 0;
}
-static int List(Pulse& ponymix, int argc _unused_, char* argv[] _unused_) {
+static int List(Pulse& ponymix, int argc, char*[]) {
if (argc != 0) errx(1, "error: list requires 0 arguments");
const auto& sinks = ponymix.GetSinks();
@@ -175,7 +171,7 @@ static int List(Pulse& ponymix, int argc _unused_, char* argv[] _unused_) {
return 0;
}
-static int ListCards(Pulse& ponymix, int argc _unused_, char* argv[] _unused_) {
+static int ListCards(Pulse& ponymix, int argc, char*[]) {
if (argc != 0) errx(1, "error: list-cards requires 0 arguments");
const auto& cards = ponymix.GetCards();
@@ -184,7 +180,7 @@ static int ListCards(Pulse& ponymix, int argc _unused_, char* argv[] _unused_) {
return 0;
}
-static int ListProfiles(Pulse& ponymix, int argc _unused_, char* argv[] _unused_) {
+static int ListProfiles(Pulse& ponymix, int argc, char*[]) {
if (argc != 0) errx(1, "error: list-profiles requires 0 arguments");
// TODO: figure out how to get a list of cards?
@@ -197,7 +193,7 @@ static int ListProfiles(Pulse& ponymix, int argc _unused_, char* argv[] _unused_
return 0;
}
-static int GetVolume(Pulse& ponymix, int argc, char* argv[] _unused_) {
+static int GetVolume(Pulse& ponymix, int argc, char*[]) {
if (argc != 0) errx(1, "error: get-volume requires 0 arguments");
auto device = string_to_device_or_die(ponymix, opt_device, opt_devtype);
@@ -224,7 +220,7 @@ static int SetVolume(Pulse& ponymix, int argc, char* argv[]) {
return 0;
}
-static int GetBalance(Pulse& ponymix, int argc, char* argv[] _unused_) {
+static int GetBalance(Pulse& ponymix, int argc, char*[]) {
if (argc != 0) errx(1, "error: get-balance requires 0 arguments");
auto device = string_to_device_or_die(ponymix, opt_device, opt_devtype);
@@ -308,7 +304,7 @@ static int DecreaseVolume(Pulse& ponymix, int argc, char* argv[]) {
return 0;
}
-static int Mute(Pulse& ponymix, int argc, char* argv[] _unused_) {
+static int Mute(Pulse& ponymix, int argc, char*[]) {
if (argc != 0) errx(1, "error: mute requires 0 arguments");
auto device = string_to_device_or_die(ponymix, opt_device, opt_devtype);
@@ -320,7 +316,7 @@ static int Mute(Pulse& ponymix, int argc, char* argv[] _unused_) {
return 0;
}
-static int Unmute(Pulse& ponymix, int argc, char* argv[] _unused_) {
+static int Unmute(Pulse& ponymix, int argc, char*[]) {
if (argc != 0) errx(1, "error: unmute requires 0 arguments");
auto device = string_to_device_or_die(ponymix, opt_device, opt_devtype);
@@ -332,7 +328,7 @@ static int Unmute(Pulse& ponymix, int argc, char* argv[] _unused_) {
return 0;
}
-static int ToggleMute(Pulse& ponymix, int argc, char* argv[] _unused_) {
+static int ToggleMute(Pulse& ponymix, int argc, char*[]) {
if (argc != 0) errx(1, "error: toggle requires 0 arguments");
auto device = string_to_device_or_die(ponymix, opt_device, opt_devtype);
@@ -344,14 +340,14 @@ static int ToggleMute(Pulse& ponymix, int argc, char* argv[] _unused_) {
return 0;
}
-static int IsMuted(Pulse& ponymix, int argc, char* argv[] _unused_) {
+static int IsMuted(Pulse& ponymix, int argc, char*[]) {
if (argc != 0) errx(1, "error: is-muted requires 0 arguments");
auto device = string_to_device_or_die(ponymix, opt_device, opt_devtype);
return !ponymix.IsMuted(*device);
}
-static int SetDefault(Pulse& ponymix, int argc, char* argv[] _unused_) {
+static int SetDefault(Pulse& ponymix, int argc, char*[]) {
if (argc != 0) errx(1, "error: set-default requires 0 arguments");
auto device = string_to_device_or_die(ponymix, opt_device, opt_devtype);
@@ -359,7 +355,7 @@ static int SetDefault(Pulse& ponymix, int argc, char* argv[] _unused_) {
return !ponymix.SetDefault(*device);
}
-static int GetProfile(Pulse& ponymix, int argc, char* argv[] _unused_) {
+static int GetProfile(Pulse& ponymix, int argc, char*[]) {
if (argc != 0) errx(1, "error: get-profile requires 0 arguments");
auto card = ponymix.GetCard(opt_card);
@@ -370,7 +366,7 @@ static int GetProfile(Pulse& ponymix, int argc, char* argv[] _unused_) {
return true;
}
-static int SetProfile(Pulse& ponymix, int argc, char* argv[] _unused_) {
+static int SetProfile(Pulse& ponymix, int argc, char* argv[]) {
if (argc != 1) errx(1, "error: set-profile requires 1 argument");
auto card = ponymix.GetCard(opt_card);
@@ -404,7 +400,7 @@ static int Move(Pulse& ponymix, int argc, char* argv[]) {
return !ponymix.Move(*source, *target);
}
-static int Kill(Pulse& ponymix, int argc, char* argv[] _unused_) {
+static int Kill(Pulse& ponymix, int argc, char*[]) {
if (argc != 0) errx(1, "error: set-default requires 0 arguments");
auto device = string_to_device_or_die(ponymix, opt_device, opt_devtype);