diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-01-30 20:17:25 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-01-30 20:17:25 (GMT) |
commit | 6e6366aec26b325317bdb2cbe90173b1509069bd (patch) | |
tree | b2f39a407be83ff860fb47d140fc424d43b30f79 /src/H5T.c | |
parent | b227b388533896337f436f01763ad26def14844c (diff) | |
download | hdf5-6e6366aec26b325317bdb2cbe90173b1509069bd.zip hdf5-6e6366aec26b325317bdb2cbe90173b1509069bd.tar.gz hdf5-6e6366aec26b325317bdb2cbe90173b1509069bd.tar.bz2 |
[svn-r205] Changes since 19980130
----------------------
./INSTALL
./Makefile.dist
./Makefile.in
./config/conclude.in
Some stupid make's don't know what PHONY means. I added
changed config to _config in the default makefile and added
_test to the other makefiles.
./src/H5Psim.c
A `file_offset' argument got changed to `int' accidently that
causes tests to fail on 64-bit machines. I changed it back to
size_t.
./src/H5T.c
Changed a couple printf formats.
Diffstat (limited to 'src/H5T.c')
-rw-r--r-- | src/H5T.c | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -1,4 +1,5 @@ -/**************************************************************************** +/* + * * NCSA HDF * * Software Development Group * * National Center for Supercomputing Applications * @@ -3238,8 +3239,8 @@ H5T_debug(H5T_t *dt, FILE * stream) break; } - fprintf(stream, "%s%s {nbytes=%d", - s, dt->locked ? "[!]" : "", dt->size); + fprintf(stream, "%s%s {nbytes=%ul", + s, dt->locked ? "[!]" : "", (unsigned long)(dt->size)); if (H5T_is_atomic(dt)) { switch (dt->u.atomic.order) { @@ -3332,8 +3333,8 @@ H5T_debug(H5T_t *dt, FILE * stream) if (dt->u.compnd.memb[i].ndims) { fprintf(stream, "["); for (j = 0; j < dt->u.compnd.memb[i].ndims; j++) { - fprintf(stream, "%s%d", j ? ", " : "", - dt->u.compnd.memb[i].dim[j]); + fprintf(stream, "%s%lu", j ? ", " : "", + (unsigned long)(dt->u.compnd.memb[i].dim[j])); } fprintf(stream, "]"); } |