diff options
| author | Arvid Norberg <[email protected]> | 2018-09-13 10:36:41 -0700 |
|---|---|---|
| committer | Arvid Norberg <[email protected]> | 2018-09-13 10:36:41 -0700 |
| commit | 3ccfa34b32b7ed9d7bef05baa36827b4b262197e (patch) | |
| tree | f8a24afd1e7d6949040aff1e177b8adf7bc84f83 /src/init.cpp | |
| parent | Merge #14213: Docs: Fix reference to lint-locale-dependence.sh (diff) | |
| download | discoin-3ccfa34b32b7ed9d7bef05baa36827b4b262197e.tar.xz discoin-3ccfa34b32b7ed9d7bef05baa36827b4b262197e.zip | |
convert C-style (void) parameter lists to C++ style ()
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 45689f7ec..326e71c8b 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -684,7 +684,7 @@ static void ThreadImport(std::vector<fs::path> vImportFiles) * Ensure that Bitcoin is running in a usable environment with all * necessary library support. */ -static bool InitSanityCheck(void) +static bool InitSanityCheck() { if(!ECC_InitSanityCheck()) { InitError("Elliptic curve cryptography sanity check failure. Aborting."); |