diff options
| author | Sjors Provoost <[email protected]> | 2019-07-05 18:30:15 +0200 |
|---|---|---|
| committer | Sjors Provoost <[email protected]> | 2019-07-05 18:32:05 +0200 |
| commit | 976b034b13d28877aee641833d5ee28a8cc5d83f (patch) | |
| tree | 541ac198f12969bf3054c306351523de41463b11 /src/util/system.cpp | |
| parent | Merge #15457: Check std::system for -[alert|block|wallet]notify (diff) | |
| download | discoin-976b034b13d28877aee641833d5ee28a8cc5d83f.tar.xz discoin-976b034b13d28877aee641833d5ee28a8cc5d83f.zip | |
[build]: use #if HAVE_SYSTEM instead of defined(HAVE_SYSTEM)
Diffstat (limited to 'src/util/system.cpp')
| -rw-r--r-- | src/util/system.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/system.cpp b/src/util/system.cpp index 0f599b85f..61b81d51e 100644 --- a/src/util/system.cpp +++ b/src/util/system.cpp @@ -1114,7 +1114,7 @@ fs::path GetSpecialFolderPath(int nFolder, bool fCreate) } #endif -#if defined(HAVE_SYSTEM) +#if HAVE_SYSTEM void runCommand(const std::string& strCommand) { if (strCommand.empty()) return; |