From bb16bd755ef6f2a3deefa13b634bbf640cce6e3a Mon Sep 17 00:00:00 2001 From: ccremers Date: Mon, 27 Feb 2006 15:20:37 +0000 Subject: [PATCH] - Print states in a more countable format. --- src/states.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/states.c b/src/states.c index aaa2219..2b8f628 100644 --- a/src/states.c +++ b/src/states.c @@ -33,8 +33,5 @@ statesSmallerThan (const states_t states, unsigned long int reflint) __inline__ void statesFormat (const states_t states) { - if (states < 1000000) - eprintf ("%lu", states); - else - eprintf ("%.3e", statesDouble (states)); + eprintf ("%lu", states); }