aboutsummaryrefslogtreecommitdiffstats
path: root/ff2mpv.go
diff options
context:
space:
mode:
authorclsr <clsr@clsr.net>2018-12-11 21:45:11 +0100
committerclsr <clsr@clsr.net>2018-12-11 21:45:11 +0100
commit788cadaa6834e3bc3a0568efd2f5605d1c0cc554 (patch)
tree3b8736ca1529cc068954621ac6c4d6733650c81f /ff2mpv.go
parentcff36f68517806cd0ae28889d276012003d57012 (diff)
downloadff2mpv-go-788cadaa6834e3bc3a0568efd2f5605d1c0cc554.tar.gz
ff2mpv-go-788cadaa6834e3bc3a0568efd2f5605d1c0cc554.zip
Remove a debug printfv1.0.1
Diffstat (limited to 'ff2mpv.go')
-rw-r--r--ff2mpv.go5
1 files changed, 2 insertions, 3 deletions
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])
}