diff options
author | Thierry Bultel <thierry.bultel@iot.bzh> | 2018-06-29 15:52:46 +0200 |
---|---|---|
committer | Thierry Bultel <thierry.bultel@iot.bzh> | 2018-07-17 10:50:07 +0200 |
commit | c0e174c085478e8bcea1a31d527df6e58f7448d1 (patch) | |
tree | 68beae1bb02a202a0793c008892a7c423c430cd9 /binding/radio_output_gstreamer.c | |
parent | d564d41b640f3ed69e16cc0e2eaf258778191b04 (diff) |
Fixed compilation warnings
Fixed all the compilation warning that appeared
with the latest version of gcc.
There are still warnings in the gstreamer headers,
that would likely be fixed by a gstreamer bump.
Change-Id: I3ae7698dbff47303be366d9755a643a013bb4e51
Signed-off-by: Thierry Bultel <thierry.bultel@iot.bzh>
Diffstat (limited to 'binding/radio_output_gstreamer.c')
-rw-r--r-- | binding/radio_output_gstreamer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binding/radio_output_gstreamer.c b/binding/radio_output_gstreamer.c index 698b81b..f492bb5 100644 --- a/binding/radio_output_gstreamer.c +++ b/binding/radio_output_gstreamer.c @@ -160,9 +160,9 @@ void radio_output_close(void) output_buf = NULL; } -int radio_output_write(void *buf, int len) +ssize_t radio_output_write(void *buf, int len) { - int rc = -EINVAL; + ssize_t rc = -EINVAL; size_t n = len; int samples = len / 2; unsigned char *p; |