diff options
-rw-r--r-- | ff2mpv.go | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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]) } |