🐛 Fix debug format printing

This commit is contained in:
Yohann D'ANELLO 2020-09-27 21:21:58 +02:00
parent 559c04322a
commit 9e3494fe6d
1 changed files with 1 additions and 1 deletions

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)
}
}