From f19c1f9026a6c054a185df35b2291e103e2ea3d2 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Thu, 26 Apr 2012 19:34:29 -0700 Subject: [PATCH] cammount: fix fmt pattern Change-Id: I8bb3df8a14cd3d3b44c899f3e2754b50b35b0028 --- cmd/cammount/cammount.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cammount/cammount.go b/cmd/cammount/cammount.go index 8b5d72682..a9959f53e 100644 --- a/cmd/cammount/cammount.go +++ b/cmd/cammount/cammount.go @@ -92,7 +92,7 @@ func main() { } err = conn.Serve(fs) if err != nil { - log.Fatalf("Serve: %", err) + log.Fatalf("Serve: %v", err) } log.Printf("fuse process ending.") }