pspp-cvs
[Top][All Lists]
Advanced

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

[Pspp-cvs] pspp/src/language/stats flip.c ChangeLog


From: Ben Pfaff
Subject: [Pspp-cvs] pspp/src/language/stats flip.c ChangeLog
Date: Sat, 17 Feb 2007 16:16:23 +0000

CVSROOT:        /cvsroot/pspp
Module name:    pspp
Changes by:     Ben Pfaff <blp> 07/02/17 16:16:23

Modified files:
        src/language/stats: flip.c ChangeLog 

Log message:
        Improve error message when temporary file cannot be created.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/stats/flip.c?cvsroot=pspp&r1=1.21&r2=1.22
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/stats/ChangeLog?cvsroot=pspp&r1=1.44&r2=1.45

Patches:
Index: flip.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/stats/flip.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -b -r1.21 -r1.22
--- flip.c      7 Feb 2007 03:58:45 -0000       1.21
+++ flip.c      17 Feb 2007 16:16:23 -0000      1.22
@@ -299,7 +299,8 @@
   flip->file = pool_tmpfile (flip->pool);
   if (flip->file == NULL)
     {
-      msg (SE, _("Could not create temporary file for FLIP."));
+      msg (SE, _("Could not create temporary file for FLIP: %s."),
+           strerror (errno));
       return NULL;
     }
 

Index: ChangeLog
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/stats/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -b -r1.44 -r1.45
--- ChangeLog   7 Feb 2007 03:58:45 -0000       1.44
+++ ChangeLog   17 Feb 2007 16:16:23 -0000      1.45
@@ -1,3 +1,8 @@
+Sat Feb 17 08:16:00 2007  Ben Pfaff  <address@hidden>
+
+       * flip.c (flip_sink_create): Improve error message when temporary
+       file cannot be created.
+
 Tue Feb  6 19:58:03 2007  Ben Pfaff  <address@hidden>
 
        * flip.c (flip_file): Give better error message on end-of-file.




reply via email to

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