diff src/ov-cx-sparse.cc @ 5828:22e23bee74c8

[project @ 2006-05-23 06:05:14 by jwe]
author jwe
date Tue, 23 May 2006 06:05:14 +0000
parents faafc2d98b8d
children c20eb7330d13
line wrap: on
line diff
--- a/src/ov-cx-sparse.cc	Mon May 22 06:25:14 2006 +0000
+++ b/src/ov-cx-sparse.cc	Tue May 23 06:05:14 2006 +0000
@@ -214,7 +214,7 @@
   int nc = d(1);
   int nz = nzmax ();
 
-  FOUR_BYTE_INT itmp;
+  int32_t itmp;
   // Use negative value for ndims to be consistent with other formats
   itmp= -2;        
   os.write (reinterpret_cast<char *> (&itmp), 4);
@@ -271,7 +271,7 @@
 octave_sparse_complex_matrix::load_binary (std::istream& is, bool swap,
 				   oct_mach_info::float_format fmt)
 {
-  FOUR_BYTE_INT nz, nc, nr, tmp;
+  int32_t nz, nc, nr, tmp;
   char ctmp;
 
   if (! is.read (reinterpret_cast<char *> (&tmp), 4))