aboutsummaryrefslogtreecommitdiff
path: root/double.c
diff options
context:
space:
mode:
Diffstat (limited to 'double.c')
-rw-r--r--double.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/double.c b/double.c
index 5ab6178..89ebd87 100644
--- a/double.c
+++ b/double.c
@@ -44,6 +44,7 @@ double valuetype_to_double(vtype d){ return (double)d; }
int valuetype_to_string(char* s, vtype d){
if( d == 0.0 || d == 1.0 || d == 2.0 || d == 4.0 || d == 8.0 || d == 16.0 ) sprintf(s,"%d", (int)d);
//else sprintf(s,"%4.3f",d);
+ //else sprintf(s,"%+4.3Le",d);
else sprintf(s,"%4.3Lf",d);
return 0;
}