aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--mpfr.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index aceeac35..11b53a08 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,9 @@
* field.c (rebuild_record): Set new fields valref to 1 if
original field's valref was > 1. Update the comment. Found
by running chem.
+ * mpfr.c (do_mpfr_compl): Fix typo in warning message.
+ Thanks to Jean-Philippe Guerard
+ <jean-philippe.guerard@xn--tigreray-i1a.org> for the report.
2017-08-16 Arnold D. Robbins <arnold@skeeve.com>
diff --git a/mpfr.c b/mpfr.c
index 5ac6077b..abd9ca62 100644
--- a/mpfr.c
+++ b/mpfr.c
@@ -819,7 +819,7 @@ do_mpfr_compl(int nargs)
zptr = tmp->mpg_i;
if (mpz_sgn(zptr) < 0)
fatal("%s",
- mpg_fmt(_("compl(%Zd): negative values is not allowed"), zptr)
+ mpg_fmt(_("compl(%Zd): negative values are not allowed"), zptr)
);
}