From 47b82acd78aba1284c37989ca835089080a98b26 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Tue, 14 Feb 2017 13:19:45 -0700 Subject: [PATCH] fix typo that prevented compilation on FreeBSD --- lib/util/strtoid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util/strtoid.c b/lib/util/strtoid.c index 34f732a7b..125ba93bc 100644 --- a/lib/util/strtoid.c +++ b/lib/util/strtoid.c @@ -80,7 +80,7 @@ sudo_strtoid_v1(const char *p, const char *sep, char **endp, const char **errstr } if (errno == ERANGE) { if (errstr != NULL) { - if (llval == LLONG_MAX)) { + if (llval == LLONG_MAX) *errstr = N_("value too large"); else *errstr = N_("value too small"); -- 2.40.0