Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix typo in dvb_mux_conf_str_dvbs()
  • Loading branch information
perexg committed Apr 19, 2015
1 parent 6b472cd commit 1ca7ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/dvb_support.c
Expand Up @@ -827,7 +827,7 @@ dvb_mux_conf_str_dvbs ( dvb_mux_conf_t *dmc, char *buf, size_t bufsize )
const int satpos = dmc->u.dmc_fe_qpsk.orbital_pos;
char satbuf[16];
if (satpos != INT_MAX) {
snprintf(satbuf, sizeof(buf), "%d.%d%c ", abs(satpos) / 10, abs(satpos) % 10, satpos < 0 ? 'W' : 'E');
snprintf(satbuf, sizeof(satpos), "%d.%d%c ", abs(satpos) / 10, abs(satpos) % 10, satpos < 0 ? 'W' : 'E');
} else {
satbuf[0] = '\0';
}
Expand Down

0 comments on commit 1ca7ed5

Please sign in to comment.