changeset 19251:3ffb8f53e940 stable

use correct HDF5 size for octave_idx_type on Windows-64 (bug #43101) * ls-hdf5.h: Define H5T_NATIVE_IDX to H5T_NATIVE_INT64 when using 64-bit indexing.
author John W. Eaton <jwe@octave.org>
date Sun, 05 Oct 2014 10:24:07 -0400
parents 432ffa35de13
children 0279c601b49c
files libinterp/corefcn/ls-hdf5.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/ls-hdf5.h	Thu Sep 25 20:08:23 2014 -0700
+++ b/libinterp/corefcn/ls-hdf5.h	Sun Oct 05 10:24:07 2014 -0400
@@ -204,7 +204,7 @@
                       const char *attr_name, void *buf);
 
 #ifdef USE_64_BIT_IDX_T
-#define H5T_NATIVE_IDX H5T_NATIVE_LONG
+#define H5T_NATIVE_IDX H5T_NATIVE_INT64
 #else
 #define H5T_NATIVE_IDX H5T_NATIVE_INT
 #endif