summaryrefslogtreecommitdiff
path: root/fits_uintmax.c
diff options
context:
space:
mode:
Diffstat (limited to 'fits_uintmax.c')
-rw-r--r--fits_uintmax.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fits_uintmax.c b/fits_uintmax.c
index ee4353848..090b3294c 100644
--- a/fits_uintmax.c
+++ b/fits_uintmax.c
@@ -50,7 +50,7 @@ mpfr_fits_uintmax_p (mpfr_srcptr f, mp_rnd_t rnd)
mp_prec_t prec;
uintmax_t s;
mpfr_t x, y;
- int res;
+ int res;
if (MPFR_IS_NAN(f) || MPFR_IS_INF(f) || MPFR_SIGN(f) < 0)
return 0; /* does not fit */
@@ -58,7 +58,7 @@ mpfr_fits_uintmax_p (mpfr_srcptr f, mp_rnd_t rnd)
if (MPFR_IS_ZERO(f))
return 1; /* zero always fits */
- /* now it fits if
+ /* now it fits if
(a) f <= MAXIMUM
(b) round(f, prec(slong), rnd) <= MAXIMUM */