1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2024-12-22 18:32:19 +00:00

🐛 Fix debug format printing

This commit is contained in:
Yohann D'ANELLO 2020-09-27 21:21:58 +02:00
parent 559c04322a
commit 9e3494fe6d

View File

@ -30,6 +30,6 @@ func Serve(cfg *Options) {
if n == 0 {
break
}
fmt.Println("Received %d bytes", n)
fmt.Printf("Received %d bytes", n)
}
}