diff options
author | Simon Wilson <simonwilson@google.com> | 2012-11-09 14:08:18 -0800 |
---|---|---|
committer | Simon Wilson <simonwilson@google.com> | 2012-11-09 14:08:18 -0800 |
commit | 2c3a8e24ec76c1db37ca6576e4685e805f74929d (patch) | |
tree | 0f8738eabf64dcfc1640e71d29e2136fc514dd17 | |
parent | 4ef9a57355a6bede99e3626d92034382cbdfaebb (diff) |
Add -Wall to Makefile and fix warnings
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | pcm.c | 8 | ||||
-rw-r--r-- | tinycap.c | 1 | ||||
-rw-r--r-- | tinymix.c | 1 |
4 files changed, 3 insertions, 9 deletions
@@ -1,4 +1,4 @@ -CFLAGS = -c -fPIC +CFLAGS = -c -fPIC -Wall INC = include OBJECTS = mixer.o pcm.o LIB = libtinyalsa.so @@ -93,14 +93,6 @@ static void param_set_min(struct snd_pcm_hw_params *p, int n, unsigned int val) } } -static void param_set_max(struct snd_pcm_hw_params *p, int n, unsigned int val) -{ - if (param_is_interval(n)) { - struct snd_interval *i = param_to_interval(p, n); - i->max = val; - } -} - static void param_set_int(struct snd_pcm_hw_params *p, int n, unsigned int val) { if (param_is_interval(n)) { @@ -31,6 +31,7 @@ #include <stdlib.h> #include <stdint.h> #include <signal.h> +#include <string.h> #define ID_RIFF 0x46464952 #define ID_WAVE 0x45564157 @@ -30,6 +30,7 @@ #include <stdio.h> #include <stdlib.h> #include <ctype.h> +#include <string.h> static void tinymix_list_controls(struct mixer *mixer); static void tinymix_detail_control(struct mixer *mixer, const char *control, |