pspp-cvs
[Top][All Lists]
Advanced

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

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


From: Ben Pfaff
Subject: [Pspp-cvs] Changes to pspp/src/loop.c
Date: Mon, 02 May 2005 02:21:36 -0400

Index: pspp/src/loop.c
diff -u pspp/src/loop.c:1.18 pspp/src/loop.c:1.19
--- pspp/src/loop.c:1.18        Fri Apr 29 01:02:15 2005
+++ pspp/src/loop.c     Mon May  2 06:21:20 2005
@@ -224,7 +224,7 @@
        }
     }
   else
-    name[0] = 0;
+    name[0] = '\0';
 
   /* Parse IF clause. */
   if (lex_match_id ("IF"))
@@ -243,7 +243,7 @@
     }
 
   /* Find variable; create if necessary. */
-  if (name[0])
+  if (name[0] != '\0')
     {
       two->index = dict_lookup_var (default_dict, name);
       if (!two->index)




reply via email to

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