summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-02-11 11:35:10 +0100
committerDiogo Franco (Kovensky) <diogomfranco@gmail.com>2015-02-11 23:59:35 +0900
commit25c0097c67c41ed67639921153e9ec88d882bcbe (patch)
tree8b7766cd996bf287f67639cf403935cc3b1c28f6
parent20d5efb419408086e104f0e8da21f512c17a26e1 (diff)
downloadmpv-25c0097c67c41ed67639921153e9ec88d882bcbe.tar.bz2
mpv-25c0097c67c41ed67639921153e9ec88d882bcbe.tar.xz
dvb_tune: fix invalid syntax
Oops.
-rw-r--r--stream/dvb_tune.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/dvb_tune.c b/stream/dvb_tune.c
index 5d625bdf12..fa65156d3c 100644
--- a/stream/dvb_tune.c
+++ b/stream/dvb_tune.c
@@ -498,7 +498,7 @@ static int tune_it(dvb_priv_t *priv, int fd_frontend, int fd_sec,
MP_VERBOSE(priv, "Tuning via DVB-API version 3.\n");
if (is_dvb_s2) {
MP_ERR(priv, "ERROR: Can not tune to S2 channel, S2-API not "
- "available, will tune to DVB-S!\n")
+ "available, will tune to DVB-S!\n");
}
if (ioctl(fd_frontend, FE_SET_FRONTEND, &feparams) < 0) {
MP_ERR(priv, "ERROR tuning channel\n");