summaryrefslogtreecommitdiff
path: root/inp_str.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2003-09-15 15:30:31 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2003-09-15 15:30:31 +0000
commitd4e9592140ced2dcd88d673643b3235eb3725021 (patch)
treee6273577c34cec1becf27badb7fab3d7488e797f /inp_str.c
parent48ad3393f623496da5189d6ba770430bed085041 (diff)
downloadmpfr-d4e9592140ced2dcd88d673643b3235eb3725021.tar.gz
replaced test stream==0 by stream==NULL
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@2414 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'inp_str.c')
-rw-r--r--inp_str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/inp_str.c b/inp_str.c
index 3055a1089..aafd37aea 100644
--- a/inp_str.c
+++ b/inp_str.c
@@ -38,7 +38,7 @@ mpfr_inp_str (mpfr_ptr rop, FILE *stream, int base, mp_rnd_t rnd_mode)
size_t nread;
MPFR_CLEAR_FLAGS(rop);
- if (stream == 0)
+ if (stream == NULL)
stream = stdin;
alloc_size = 100;