Mercurial > dedupe
comparison updateDeDupe.cpp @ 11:f59ee8d3f8ea
Fix error string formatting.
| author | Tom Fredrik Blenning Klaussen <bfg@sim.no> |
|---|---|
| date | Fri, 24 Aug 2012 22:56:21 +0200 |
| parents | b5943e4bf676 |
| children | b2c2c2bf2bbd |
comparison
equal
deleted
inserted
replaced
| 10:ec87a79770ee | 11:f59ee8d3f8ea |
|---|---|
| 9 | 9 |
| 10 try { | 10 try { |
| 11 DataController dc(false); | 11 DataController dc(false); |
| 12 } | 12 } |
| 13 catch (Exception& e) { | 13 catch (Exception& e) { |
| 14 std::cerr << "Unrecoverable error" << e.toString().toStdString(); | 14 std::cerr << "Unrecoverable error: " << e.toString().toStdString(); |
| 15 exit(1); | 15 exit(1); |
| 16 } | 16 } |
| 17 | 17 |
| 18 } | 18 } |
| 19 | 19 |
