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/util.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/util.cpp')
| -rw-r--r-- | src/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index ee8bc9458..75a387d7e 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1248,7 +1248,7 @@ fs::path AbsPathForConfigVal(const fs::path& path, bool net_specific) return fs::absolute(path, GetDataDir(net_specific)); } -int ScheduleBatchPriority(void) +int ScheduleBatchPriority() { #ifdef SCHED_BATCH const static sched_param param{0}; |