comparison DeDupe.cpp @ 12:0114be0b5ad4

Fix error string formatting.
author Tom Fredrik Blenning Klaussen <bfg@sim.no>
date Fri, 24 Aug 2012 22:56:43 +0200
parents b5943e4bf676
children b2c2c2bf2bbd
comparison
equal deleted inserted replaced
11:f59ee8d3f8ea 12:0114be0b5ad4
13 DataController dc(true); 13 DataController dc(true);
14 14
15 return app.exec(); 15 return app.exec();
16 } 16 }
17 catch (Exception& e) { 17 catch (Exception& e) {
18 std::cerr << "Unrecoverable error" << e.toString().toStdString(); 18 std::cerr << "Unrecoverable error: " << e.toString().toStdString();
19 exit(1); 19 exit(1);
20 } 20 }
21 21
22 } 22 }
23 23