pspp-cvs
[Top][All Lists]
Advanced

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

[Pspp-cvs] pspp/src/data format.c


From: Ben Pfaff
Subject: [Pspp-cvs] pspp/src/data format.c
Date: Fri, 09 Jun 2006 19:11:58 +0000

CVSROOT:        /cvsroot/pspp
Module name:    pspp
Changes by:     Ben Pfaff <blp> 06/06/09 19:11:58

Modified files:
        src/data       : format.c 

Log message:
        * format.c (measure_is_valid): Really return false when m >=
        n_MEASURES.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/src/data/format.c?cvsroot=pspp&r1=1.4&r2=1.5

Patches:
Index: format.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/data/format.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- format.c    31 May 2006 07:38:03 -0000      1.4
+++ format.c    9 Jun 2006 19:11:58 -0000       1.5
@@ -378,7 +378,7 @@
 measure_is_valid(enum measure m)
 {
   if ( m <= 0 ) return false;
-  if ( m >= n_MEASURES) false;
+  if ( m >= n_MEASURES) return false;
   return true;
 }
 




reply via email to

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