diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | mpfr.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -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> @@ -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) ); } |