summaryrefslogtreecommitdiff
path: root/out_str.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2005-08-18 16:35:19 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2005-08-18 16:35:19 +0000
commitbab5aab404897a12fe1c87734ebf2aa270b9b73b (patch)
tree73ab96f558e7e0b4ef371902ead983189184a0f7 /out_str.c
parent8328a51518450ad8ddb86e38e7952e28065ff22a (diff)
downloadmpfr-bab5aab404897a12fe1c87734ebf2aa270b9b73b.tar.gz
Converted tabs to spaces with expand.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@3725 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'out_str.c')
-rw-r--r--out_str.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/out_str.c b/out_str.c
index c2125915d..ced880f57 100644
--- a/out_str.c
+++ b/out_str.c
@@ -27,7 +27,7 @@ MA 02110-1301, USA. */
size_t
mpfr_out_str (FILE *stream, int base, size_t n_digits, mpfr_srcptr op,
- mp_rnd_t rnd_mode)
+ mp_rnd_t rnd_mode)
{
char *s, *s0;
size_t l;
@@ -46,15 +46,15 @@ mpfr_out_str (FILE *stream, int base, size_t n_digits, mpfr_srcptr op,
if (MPFR_IS_INF(op))
{
if (MPFR_SIGN(op) > 0)
- {
- fprintf (stream, "@Inf@");
- return 3;
- }
+ {
+ fprintf (stream, "@Inf@");
+ return 3;
+ }
else
- {
- fprintf (stream, "-@Inf@");
- return 4;
- }
+ {
+ fprintf (stream, "-@Inf@");
+ return 4;
+ }
}
if (MPFR_IS_ZERO(op))