diff xml.c @ 70:cee55c8365e9 default tip

fix
author Kazuma
date Thu, 19 May 2016 18:52:26 +0900
parents 435ac1cdb64e
children
line wrap: on
line diff
--- a/xml.c	Sun May 22 10:19:58 2011 +0900
+++ b/xml.c	Thu May 19 18:52:26 2016 +0900
@@ -28,7 +28,8 @@
 
 static inline char *pickup_exponent(int *exp, char *cont)
 {
-    int n,value=0,shift=10;
+    int n,value=0;
+    float shift = 10;
 
     if (*cont == ',' || *cont == '\n') return(NULL);