diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-07-24 09:30:09 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-07-24 09:30:09 +0200 |
commit | a034c7ebb6995c342fea289d04a6198d793eab08 (patch) | |
tree | 9d40fa6ba2aa202d64f68e0f9397b75b3269841b /src/bitcoind.cpp | |
parent | 0a740650a52a21b7d82b43524017c87643af3224 (diff) |
exclude CreatePidFile() function on WIN32 as it is unused
Diffstat (limited to 'src/bitcoind.cpp')
-rw-r--r-- | src/bitcoind.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp index bc23cf5507..be18f9ae83 100644 --- a/src/bitcoind.cpp +++ b/src/bitcoind.cpp @@ -74,7 +74,7 @@ bool AppInit(int argc, char* argv[]) int ret = CommandLineRPC(argc, argv); exit(ret); } -#if !defined(WIN32) +#ifndef WIN32 fDaemon = GetBoolArg("-daemon", false); if (fDaemon) { |