Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
htsp server: cosmetic log fix
  • Loading branch information
perexg committed Dec 20, 2015
1 parent 192f8e0 commit 646f989
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/htsp_server.c
Expand Up @@ -2461,7 +2461,7 @@ htsp_method_skip(htsp_connection_t *htsp, htsmsg_t *in)
if(!htsmsg_get_s64(in, "time", &s64)) {
skip.type = abs ? SMT_SKIP_ABS_TIME : SMT_SKIP_REL_TIME;
skip.time = hs->hs_90khz ? s64 : ts_rescale_i(s64, 1000000);
tvhtrace("htsp-sub", "skip: %s %"PRId64" (%s)\n", abs ? "abs" : "rel",
tvhtrace("htsp-sub", "skip: %s %"PRId64" (%s)", abs ? "abs" : "rel",
skip.time, hs->hs_90khz ? "90kHz" : "1MHz");
} else if (!htsmsg_get_s64(in, "size", &s64)) {
skip.type = abs ? SMT_SKIP_ABS_SIZE : SMT_SKIP_REL_SIZE;
Expand Down

0 comments on commit 646f989

Please sign in to comment.