Skip to content

Commit

Permalink
Fix build error in qt/bitcoin.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
pooler committed Apr 25, 2012
1 parent 2253d82 commit 7fe3ffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/bitcoin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ int main(int argc, char *argv[])
} catch (std::exception& e) {
handleRunawayException(&e);
} catch (...) {
handleRunawayException(&e);
handleRunawayException(NULL);
}
return 0;
}
Expand Down

0 comments on commit 7fe3ffc

Please sign in to comment.