diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-03-29 16:29:20 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-03-29 16:29:20 +0200 |
commit | 2cf75c9364300274bcb131d2a6adf50eab12831d (patch) | |
tree | 1ad2765fd045b13f907ced3ab5f040bf82ecc5c6 /vlc_input.h | |
parent | 8861236aa6ced1e0a5ff67e739ad8130d5093e10 (diff) | |
download | toolame-dab-2cf75c9364300274bcb131d2a6adf50eab12831d.tar.gz toolame-dab-2cf75c9364300274bcb131d2a6adf50eab12831d.tar.bz2 toolame-dab-2cf75c9364300274bcb131d2a6adf50eab12831d.zip |
Fix vlc input error handling
Diffstat (limited to 'vlc_input.h')
-rw-r--r-- | vlc_input.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vlc_input.h b/vlc_input.h index 976a7e7..1614ae3 100644 --- a/vlc_input.h +++ b/vlc_input.h @@ -37,7 +37,7 @@ void handleStream( int vlc_in_prepare(unsigned verbosity, unsigned int rate, const char* uri); // Read len audio bytes into buf -size_t vlc_in_read(void *buf, size_t len); +ssize_t vlc_in_read(void *buf, size_t len); #endif |