treat that like a string, damn compiler

This commit is contained in:
Nicholas O'Connor 2017-04-09 22:07:50 -07:00
parent 7136b3cc3e
commit e4a8abf27a

View File

@ -43,7 +43,7 @@ void cellar::bottles::switch_active_bottle(int argc, vector<string> argv) {
try { try {
create_symlink(targetpath, bottlepath); create_symlink(targetpath, bottlepath);
} catch (filesystem_error &exc) { } catch (filesystem_error &exc) {
output::error(exc.what()); output::error((string) "Error creating symlink at ~/.wine: " + exc.what());
return; return;
} }
} }