From 788cadaa6834e3bc3a0568efd2f5605d1c0cc554 Mon Sep 17 00:00:00 2001 From: clsr Date: Tue, 11 Dec 2018 21:45:11 +0100 Subject: Remove a debug printf --- ff2mpv.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ff2mpv.go') diff --git a/ff2mpv.go b/ff2mpv.go index 7f0c939..4651100 100644 --- a/ff2mpv.go +++ b/ff2mpv.go @@ -27,8 +27,8 @@ func ff2mpv() { // extract message length from the first 4 bytes var l uint32 // Go does not have an easy way to do sutff with native endianness without - // using usafe. Blame stupid WebExtension spec that uses *native* endianness in - // a *protocol*. Seriously, who designed that‽ + // using unsafe. Blame the stupid WebExtension spec that uses *native* + // endianness in a *protocol*. Seriously, who designed that‽ if err := binary.Read(os.Stdin, endianness, &l); err != nil { panic(err) } @@ -83,7 +83,6 @@ func manifest() { } func usage(w io.Writer) { - fmt.Fprintf(os.Stderr, "args: %#v\n", os.Args) fmt.Fprintf(w, "usage: %s [--manifest]\n", os.Args[0]) } -- cgit