Fix error message handling in rt-cli, related to single-user mode

See #4428
This commit is contained in:
Hombre
2018-03-10 17:34:06 +01:00
parent ef7e09a372
commit 191a139445
2 changed files with 5 additions and 3 deletions

View File

@@ -81,7 +81,7 @@ bool Options::checkDirPath (Glib::ustring &path, Glib::ustring errString)
return true;
} else {
if (!errString.empty()) {
printf ("%s\n", errString.c_str());
std::cerr << errString << std::endl;
}
return false;