aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-11-25 19:50:58 +0100
committerJakob Unterwurzacher2015-11-25 20:57:16 +0100
commitdf46548be66ded2b504a5314b9496e961e9e2533 (patch)
tree076abcea8bedc330ab5f880bda313dcc41f3c348 /main.go
parentdce0564f2ab12ab0d115a7e88fe48d09f353f966 (diff)
Print newline after gocryptfs.conf not found error
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 2a47e8a..8d8ef08 100644
--- a/main.go
+++ b/main.go
@@ -77,7 +77,7 @@ func loadConfig(args *argContainer) (masterkey []byte, confFile *cryptfs.ConfFil
// Check if the file exists at all before prompting for a password
_, err := os.Stat(args.config)
if err != nil {
- fmt.Print(err)
+ fmt.Println(err)
os.Exit(ERREXIT_LOADCONF)
}
fmt.Printf("Password: ")