Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dvb support: revert dvb_sat_position_to_str() change (missing directi…
…on character)
  • Loading branch information
perexg committed Nov 18, 2014
1 parent a0e69f8 commit fa22f18
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/input/mpegts/dvb_support.c
Expand Up @@ -864,6 +864,7 @@ dvb_sat_position_to_str(int position, char *buf, size_t buflen)
snprintf(buf, buflen, "%d", abs(position / 10));
if (dec)
snprintf(buf + strlen(buf), buflen - strlen(buf), ".%d", abs(dec));
snprintf(buf + strlen(buf), buflen - strlen(buf), "%c", position < 0 ? 'W' : 'E');
return buf;
}

Expand Down

0 comments on commit fa22f18

Please sign in to comment.