Mercurial > dedupe
changeset 11:f59ee8d3f8ea
Fix error string formatting.
| author | Tom Fredrik Blenning Klaussen <bfg@sim.no> |
|---|---|
| date | Fri, 24 Aug 2012 22:56:21 +0200 |
| parents | ec87a79770ee |
| children | 0114be0b5ad4 |
| files | updateDeDupe.cpp |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/updateDeDupe.cpp Thu Aug 23 00:26:45 2012 +0200 +++ b/updateDeDupe.cpp Fri Aug 24 22:56:21 2012 +0200 @@ -11,7 +11,7 @@ DataController dc(false); } catch (Exception& e) { - std::cerr << "Unrecoverable error" << e.toString().toStdString(); + std::cerr << "Unrecoverable error: " << e.toString().toStdString(); exit(1); }
