summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-12-23 03:28:37 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-12-23 03:28:37 (GMT)
commit02a90afcdcd9b6a41455a198799bc8033bf56485 (patch)
tree6161562ad0783e66a7df383be002cb90de2eedb2 /tools
parenta0e70a08ba5a886bebca4ec305192693ec2f5a1d (diff)
downloadhdf5-02a90afcdcd9b6a41455a198799bc8033bf56485.zip
hdf5-02a90afcdcd9b6a41455a198799bc8033bf56485.tar.gz
hdf5-02a90afcdcd9b6a41455a198799bc8033bf56485.tar.bz2
[svn-r14358] Description:
Tweak the constants for the shared message flags to be equal to the other flags useds for the underlying messages. Tested on: FreeBSD/32 6.2 (duty) in debug mode FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe, in debug mode Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN, in production mode Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN, in production mode Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN, w/szip filter, in production mode Mac OS X/32 10.4.10 (amazon) in debug mode Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Diffstat (limited to 'tools')
-rw-r--r--tools/h5repack/h5repack_copy.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/h5repack/h5repack_copy.c b/tools/h5repack/h5repack_copy.c
index c9b9df8..9a255b2 100644
--- a/tools/h5repack/h5repack_copy.c
+++ b/tools/h5repack/h5repack_copy.c
@@ -130,23 +130,23 @@ int copy_objects(const char* fnamein,
if(options->msg_size[i] > 0) {
switch(i) {
case 0:
- mesg_type_flags[nindex] = H5O_MESG_SDSPACE_FLAG;
+ mesg_type_flags[nindex] = H5O_SHMESG_SDSPACE_FLAG;
break;
case 1:
- mesg_type_flags[nindex] = H5O_MESG_DTYPE_FLAG;
+ mesg_type_flags[nindex] = H5O_SHMESG_DTYPE_FLAG;
break;
case 2:
- mesg_type_flags[nindex] = H5O_MESG_FILL_FLAG;
+ mesg_type_flags[nindex] = H5O_SHMESG_FILL_FLAG;
break;
case 3:
- mesg_type_flags[nindex] = H5O_MESG_PLINE_FLAG;
+ mesg_type_flags[nindex] = H5O_SHMESG_PLINE_FLAG;
break;
case 4:
- mesg_type_flags[nindex] = H5O_MESG_ATTR_FLAG;
+ mesg_type_flags[nindex] = H5O_SHMESG_ATTR_FLAG;
break;
} /* end switch */
min_mesg_sizes[nindex] = (unsigned)options->msg_size[i];