From e4a8abf27a6335bc86ed228d505a99b21d29db96 Mon Sep 17 00:00:00 2001 From: Nicholas O'Connor Date: Sun, 9 Apr 2017 22:07:50 -0700 Subject: [PATCH] treat that like a string, damn compiler --- src/bottles/activate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bottles/activate.cpp b/src/bottles/activate.cpp index c522966..e19293d 100644 --- a/src/bottles/activate.cpp +++ b/src/bottles/activate.cpp @@ -43,7 +43,7 @@ void cellar::bottles::switch_active_bottle(int argc, vector argv) { try { create_symlink(targetpath, bottlepath); } catch (filesystem_error &exc) { - output::error(exc.what()); + output::error((string) "Error creating symlink at ~/.wine: " + exc.what()); return; } }