From 9e3494fe6d346b43d64c2afccf6ec0798beb2f93 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Sun, 27 Sep 2020 21:21:58 +0200 Subject: [PATCH] :bug: Fix debug format printing --- stream/srt/srt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stream/srt/srt.go b/stream/srt/srt.go index 00e45d0..1b85728 100644 --- a/stream/srt/srt.go +++ b/stream/srt/srt.go @@ -30,6 +30,6 @@ func Serve(cfg *Options) { if n == 0 { break } - fmt.Println("Received %d bytes", n) + fmt.Printf("Received %d bytes", n) } }