aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-08-17 20:49:38 +0300
committerArnold D. Robbins <arnold@skeeve.com>2017-08-17 20:49:38 +0300
commit9c8cdd3abac000ccb8f98545c6afb06d9211deda (patch)
treeb1f4eeb5761492e031db47b100239e8dcdc020f8
parent4e11acf5f6be5c228aa2728e51cb9f17874a599d (diff)
downloadegawk-9c8cdd3abac000ccb8f98545c6afb06d9211deda.tar.gz
egawk-9c8cdd3abac000ccb8f98545c6afb06d9211deda.tar.bz2
egawk-9c8cdd3abac000ccb8f98545c6afb06d9211deda.zip
Typo fix in do_compl_mpfr().
-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)
);
}