Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linuxdvb: fix copy-and-paste error (FE_HAS_LOCK -> LOCK)
  • Loading branch information
perexg committed Dec 20, 2015
1 parent b9da6f9 commit 192f8e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/linuxdvb/linuxdvb_frontend.c
Expand Up @@ -640,7 +640,7 @@ linuxdvb_frontend_monitor ( void *aux )
(fe_status & FE_HAS_CARRIER) ? " | CARRIER" : "",
(fe_status & FE_HAS_VITERBI) ? " | VITERBI" : "",
(fe_status & FE_HAS_SYNC) ? " | SYNC" : "",
(fe_status & FE_HAS_LOCK) ? " | SIGNAL" : "",
(fe_status & FE_HAS_LOCK) ? " | LOCK" : "",
(fe_status & FE_TIMEDOUT) ? "TIMEOUT" : "");
} else {
tvhtrace("linuxdvb", "%s - status %d (%04X)", buf, status, fe_status);
Expand Down

0 comments on commit 192f8e0

Please sign in to comment.