diff options
author | fanquake <fanquake@gmail.com> | 2019-10-16 20:20:59 -0400 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2019-10-16 20:20:59 -0400 |
commit | 5013171eaf111d43ff824a212aebe40901221d6d (patch) | |
tree | 1a425f08e9aa8c180d9d26bc824f77c4378b680b | |
parent | 46d6930f8c7ba7cbcd7d86dd5d0117642fcbc819 (diff) |
doc: correct function name in ReportHardwareRand()
-rw-r--r-- | src/random.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/random.cpp b/src/random.cpp index a78cd93bb4..0f13228383 100644 --- a/src/random.cpp +++ b/src/random.cpp @@ -111,7 +111,7 @@ static void InitHardwareRand() static void ReportHardwareRand() { - // This must be done in a separate function, as HWRandInit() may be indirectly called + // This must be done in a separate function, as InitHardwareRand() may be indirectly called // from global constructors, before logging is initialized. if (g_rdseed_supported) { LogPrintf("Using RdSeed as additional entropy source\n"); |