pspp-cvs
[Top][All Lists]
Advanced

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

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


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

Index: pspp/src/get.c
diff -u pspp/src/get.c:1.29 pspp/src/get.c:1.30
--- pspp/src/get.c:1.29 Thu May  5 06:59:54 2005
+++ pspp/src/get.c      Tue May 17 05:46:39 2005
@@ -977,8 +977,6 @@
   for (iter = mtf.head; iter != NULL; iter = iter->next) 
     if (iter->in_name != NULL)
       {
-        static const struct fmt_spec f1_0 = {FMT_F, 1, 0};
-        
         iter->in_var = dict_create_var (mtf.dict, iter->in_name, 0);
         if (iter->in_var == NULL)
           {
@@ -987,7 +985,8 @@
                  iter->in_var);
             goto error;
           }
-        iter->in_var->print = iter->in_var->write = f1_0;
+        iter->in_var->print = iter->in_var->write
+          = make_output_format (FMT_F, 1, 0);
       }
     
   /* MATCH FILES performs an n-way merge on all its input files.




reply via email to

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