diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2012-08-27 12:37:35 -0400 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2012-08-27 12:37:35 -0400 |
commit | ef8e821cf297de1cd4a6d0eb3e3fb96536c8be21 (patch) | |
tree | 9ee305b703ac8782612f1737fee8e56a1cd5bab8 /src/qt/qtipcserver.cpp | |
parent | 8cd98a9a26f7d3fa248eb44026239054ae9ed8d8 (diff) |
Fix compiler warning on mac
Diffstat (limited to 'src/qt/qtipcserver.cpp')
-rw-r--r-- | src/qt/qtipcserver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/qtipcserver.cpp b/src/qt/qtipcserver.cpp index 0ce9ec8147..a2fe866e29 100644 --- a/src/qt/qtipcserver.cpp +++ b/src/qt/qtipcserver.cpp @@ -26,8 +26,6 @@ using namespace boost; using namespace boost::interprocess; using namespace boost::posix_time; -static void ipcThread2(void* pArg); - #ifdef MAC_OSX // URI handling not implemented on OSX yet @@ -36,6 +34,8 @@ void ipcInit(int argc, char *argv[]) { } #else +static void ipcThread2(void* pArg); + static bool ipcScanCmd(int argc, char *argv[], bool fRelay) { // Check for URI in argv |