Fixed terminateHandler typo.

Fixes #1.
This commit is contained in:
2019-08-05 12:31:06 +01:00
parent c0ca093e83
commit a426a70dcf

View File

@@ -22,7 +22,7 @@ void terminateHandler()
int main(int argc, char **argv) { int main(int argc, char **argv) {
#ifdef DEBUG_MSGS #ifdef DEBUG_MSGS
std::set_terminate(terminate_handler); std::set_terminate(terminateHandler);
#endif #endif
int retCode = handleTransactions(argv[0], argc == 2 ? argv[1] : STORAGE_PREFIX); int retCode = handleTransactions(argv[0], argc == 2 ? argv[1] : STORAGE_PREFIX);