pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] Changes to pspp/src/data-out.c


From: Ben Pfaff
Subject: [Pspp-cvs] Changes to pspp/src/data-out.c
Date: Tue, 17 May 2005 01:46:42 -0400

Index: pspp/src/data-out.c
diff -u pspp/src/data-out.c:1.15 pspp/src/data-out.c:1.16
--- pspp/src/data-out.c:1.15    Mon May 16 07:33:17 2005
+++ pspp/src/data-out.c Tue May 17 05:46:39 2005
@@ -193,10 +193,7 @@
 void
 num_to_string (double v, char *s, int w, int d)
 {
-  struct fmt_spec f;
-  f.type = FMT_F;
-  f.w = w;
-  f.d = d;
+  struct fmt_spec f = make_output_format (FMT_F, w, d);
   convert_F (s, &f, v);
 }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]