From 4a4964729b3920a837d9e5e7004d15d9a14554bd Mon Sep 17 00:00:00 2001 From: Dimitris Apostolou Date: Mon, 5 Mar 2018 18:58:57 +0200 Subject: [PATCH] Fix typo --- lib/univalue_get.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/univalue_get.cpp b/lib/univalue_get.cpp index eabcf2dad1a..0ad61465452 100644 --- a/lib/univalue_get.cpp +++ b/lib/univalue_get.cpp @@ -35,7 +35,7 @@ bool ParseInt32(const std::string& str, int32_t *out) errno = 0; // strtol will not set errno if valid long int n = strtol(str.c_str(), &endp, 10); if(out) *out = (int32_t)n; - // Note that strtol returns a *long int*, so even if strtol doesn't report a over/underflow + // Note that strtol returns a *long int*, so even if strtol doesn't report an over/underflow // we still have to check that the returned value is within the range of an *int32_t*. On 64-bit // platforms the size of these types may be different. return endp && *endp == 0 && !errno &&