From: Jaroslav Kysela Date: Thu, 17 Dec 2015 20:47:48 +0000 (+0100) Subject: htsp server: cosmetic log fix X-Git-Tag: v4.2.1~1292 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=646f989827b0f67423305cc42ca0f4a557124dc4;p=thirdparty%2Ftvheadend.git htsp server: cosmetic log fix --- diff --git a/src/htsp_server.c b/src/htsp_server.c index cc9fff9d0..aff9cb4c2 100644 --- a/src/htsp_server.c +++ b/src/htsp_server.c @@ -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;