Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
another typo fix in dvb_mux_conf_str_dvbs()
  • Loading branch information
manio authored and perexg committed Apr 21, 2015
1 parent 0af9008 commit a7cb06c
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(satpos), "%d.%d%c ", abs(satpos) / 10, abs(satpos) % 10, satpos < 0 ? 'W' : 'E');
snprintf(satbuf, sizeof(satbuf), "%d.%d%c ", abs(satpos) / 10, abs(satpos) % 10, satpos < 0 ? 'W' : 'E');
} else {
satbuf[0] = '\0';
}
Expand Down

0 comments on commit a7cb06c

Please sign in to comment.