diff options
author | Dave Reisner <dreisner@archlinux.org> | 2012-08-13 15:42:28 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2012-08-13 15:42:28 -0400 |
commit | 2e65ddf5ff30056a071235b180c2845b20e92007 (patch) | |
tree | 598b7472b2a9fd607653c53cb1580e7b4cc159ab | |
parent | 3b30c9e8f7f1a3cdbdd2939dfd52ae0ef71d51a4 (diff) | |
download | mirror-ponymix-2e65ddf5ff30056a071235b180c2845b20e92007.tar.gz mirror-ponymix-2e65ddf5ff30056a071235b180c2845b20e92007.tar.bz2 mirror-ponymix-2e65ddf5ff30056a071235b180c2845b20e92007.zip |
add missing static qualifier for do_verb
-rw-r--r-- | pulsemix.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -680,7 +680,7 @@ static enum action string_to_verb(const char *string) return ACTION_INVALID; } -int do_verb(struct pulseaudio_t *pulse, enum action verb, int value) +static int do_verb(struct pulseaudio_t *pulse, enum action verb, int value) { switch (verb) { case ACTION_GETVOL: |