Commit ea38aca9 authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

Fix log.Fatal call.

parent bc17f6b7
...@@ -124,7 +124,7 @@ func init() { ...@@ -124,7 +124,7 @@ func init() {
var err error var err error
fusermountBinary, err = exec.LookPath("fusermount") fusermountBinary, err = exec.LookPath("fusermount")
if err != nil { if err != nil {
log.Fatal("Could not find fusermount binary: %v", err) log.Fatalf("Could not find fusermount binary: %v", err)
} }
umountBinary, _ = exec.LookPath("umount") umountBinary, _ = exec.LookPath("umount")
if err != nil { if err != nil {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment