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

[project @ 2006-05-23 06:05:14 by jwe]
author jwe
date Tue, 23 May 2006 06:05:14 +0000
parents 080c08b192d8
children bd3041e30d97
line wrap: on
line diff
--- a/src/ov-list.cc
+++ b/src/ov-list.cc
@@ -615,7 +615,7 @@
 {
   octave_value_list lst = list_value ();
 
-  FOUR_BYTE_INT len = lst.length();
+  int32_t len = lst.length();
   os.write (reinterpret_cast<char *> (&len), 4);
   
   for (int i = 0; i < lst.length (); i++)
@@ -641,7 +641,7 @@
 octave_list::load_binary (std::istream& is, bool swap,
 			  oct_mach_info::float_format fmt)
 {
-  FOUR_BYTE_INT len;
+  int32_t len;
   if (! is.read (reinterpret_cast<char *> (&len), 4))
     return false;
   if (swap)