summaryrefslogtreecommitdiffstats
path: root/stream/stream_radio.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream_radio.c')
-rw-r--r--stream/stream_radio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stream/stream_radio.c b/stream/stream_radio.c
index 070dd19d4b..3e46148528 100644
--- a/stream/stream_radio.c
+++ b/stream/stream_radio.c
@@ -1099,10 +1099,10 @@ static int open_s(stream_t *stream,int mode, void* opts, int* file_format) {
int i;
if (strncmp("radio://",stream->url,8) != 0)
- return STREAM_UNSUPORTED;
+ return STREAM_UNSUPPORTED;
if(mode != STREAM_READ)
- return STREAM_UNSUPORTED;
+ return STREAM_UNSUPPORTED;
priv=calloc(1,sizeof(radio_priv_t));