diff options
author | daney <daney@280ebfd0-de03-0410-8827-d642c229c3f4> | 2001-06-14 15:55:36 +0000 |
---|---|---|
committer | daney <daney@280ebfd0-de03-0410-8827-d642c229c3f4> | 2001-06-14 15:55:36 +0000 |
commit | a22d401bc7b4f9fb4c1025a91e67e9318a40b7e9 (patch) | |
tree | b8a6606290bbcf96d57362627dc25c3217f6c333 /sin_cos.c | |
parent | 0c5d5d07b72d32a376331aee381619d2a5e96980 (diff) | |
download | mpfr-a22d401bc7b4f9fb4c1025a91e67e9318a40b7e9.tar.gz |
A few patches.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1091 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'sin_cos.c')
-rw-r--r-- | sin_cos.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -105,7 +105,7 @@ mpfr_sin_cos (sinus, cosinus, x, rnd_mode) TMP_MARK (marker); /* allow sinus or cosinus to be NULL */ if (sinus == NULL) { mp_size_t s; - if (cosinus == NULL) { + if (cosinus == NULL) { fprintf (stderr, "Error in mpfr_sin_cos: 1st and 2nd operands cannot be NULL simultaneously\n"); exit (1); } |