From: Tom Lane Date: Tue, 16 Aug 2016 20:14:16 +0000 (-0400) Subject: Suppress -Wunused-result warning for strtol(). X-Git-Tag: REL_10_BETA1~1875 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4bc4cfe3bd186b4a1d1b01279bfd0e6ab11268b2;p=postgresql Suppress -Wunused-result warning for strtol(). I'm not sure which bozo thought it's a problem to use strtol() only for its endptr result, but silence the warning using same method used elsewhere. Report: --- diff --git a/src/backend/utils/adt/dbsize.c b/src/backend/utils/adt/dbsize.c index 0e8a82d6f4..3167bad92b 100644 --- a/src/backend/utils/adt/dbsize.c +++ b/src/backend/utils/adt/dbsize.c @@ -759,13 +759,15 @@ pg_size_bytes(PG_FUNCTION_ARGS) /* Part (4): optional exponent */ if (*endptr == 'e' || *endptr == 'E') { + long exponent; char *cp; /* * Note we might one day support EB units, so if what follows 'E' * isn't a number, just treat it all as a unit to be parsed. */ - (void) strtol(endptr + 1, &cp, 10); + exponent = strtol(endptr + 1, &cp, 10); + (void) exponent; /* Silence -Wunused-result warnings */ if (cp > endptr + 1) endptr = cp; }