From 1bc2f0a37b68aa99e90437105a48c47046b6c0d0 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Thu, 14 Jun 2012 09:41:11 +0200 Subject: [PATCH] Fix build of testcases after commit 0f10b21719e1b0d9683a142f0a7105e65f095694 --- src/test/test_bitcoin.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp index ca001b0e67e..a21801b5d9b 100644 --- a/src/test/test_bitcoin.cpp +++ b/src/test/test_bitcoin.cpp @@ -17,7 +17,13 @@ CWallet* pwalletMain; +void Shutdown(void* parg) +{ + exit(0); +} + void StartShutdown() { exit(0); } +