[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Pspp-cvs] pspp/src/data sys-file-writer.c sys-file-writer.h
From: |
John Darrington |
Subject: |
[Pspp-cvs] pspp/src/data sys-file-writer.c sys-file-writer.h |
Date: |
Fri, 01 Jun 2007 02:32:13 +0000 |
CVSROOT: /sources/pspp
Module name: pspp
Changes by: John Darrington <jmd> 07/06/01 02:32:13
Modified files:
src/data : sys-file-writer.c sys-file-writer.h
Log message:
Changed return type from int to bool
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/src/data/sys-file-writer.c?cvsroot=pspp&r1=1.23&r2=1.24
http://cvs.savannah.gnu.org/viewcvs/pspp/src/data/sys-file-writer.h?cvsroot=pspp&r1=1.2&r2=1.3
Patches:
Index: sys-file-writer.c
===================================================================
RCS file: /sources/pspp/pspp/src/data/sys-file-writer.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -b -r1.23 -r1.24
--- sys-file-writer.c 3 May 2007 10:15:26 -0000 1.23
+++ sys-file-writer.c 1 Jun 2007 02:32:13 -0000 1.24
@@ -927,7 +927,7 @@
/* Writes case C to system file W.
Returns 1 if successful, 0 if an I/O error occurred. */
-int
+bool
sfm_write_case (struct sfm_writer *w, const struct ccase *c)
{
if (ferror (w->file))
Index: sys-file-writer.h
===================================================================
RCS file: /sources/pspp/pspp/src/data/sys-file-writer.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- sys-file-writer.h 15 Dec 2006 00:16:02 -0000 1.2
+++ sys-file-writer.h 1 Jun 2007 02:32:13 -0000 1.3
@@ -38,7 +38,7 @@
struct sfm_write_options);
struct sfm_write_options sfm_writer_default_options (void);
-int sfm_write_case (struct sfm_writer *, const struct ccase *);
+bool sfm_write_case (struct sfm_writer *, const struct ccase *);
bool sfm_write_error (const struct sfm_writer *);
bool sfm_close_writer (struct sfm_writer *);
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Pspp-cvs] pspp/src/data sys-file-writer.c sys-file-writer.h,
John Darrington <=