diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2013-11-05 02:45:47 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2013-11-05 02:45:47 (GMT) |
commit | 8a0555c2a20dd63465549eb92022ab678e21c550 (patch) | |
tree | 30e359a7cade7c96d4a5e3986a9da88bc6f451d2 /src/H5VLiod_map.c | |
parent | 65f3726b3dde20f960978e3cd1978dd3157d5e0d (diff) | |
download | hdf5-8a0555c2a20dd63465549eb92022ab678e21c550.zip hdf5-8a0555c2a20dd63465549eb92022ab678e21c550.tar.gz hdf5-8a0555c2a20dd63465549eb92022ab678e21c550.tar.bz2 |
[svn-r24405] - Edit configure magic to pick up IOD, MDHIM, PBL, PLFS, and DAOS_POSIX.
- fix some warnings detected on Ostrich
Diffstat (limited to 'src/H5VLiod_map.c')
-rw-r--r-- | src/H5VLiod_map.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5VLiod_map.c b/src/H5VLiod_map.c index 10dc161..e940539 100644 --- a/src/H5VLiod_map.c +++ b/src/H5VLiod_map.c @@ -234,7 +234,7 @@ H5VL_iod_server_map_open_cb(AXE_engine_t UNUSED axe_engine, FUNC_ENTER_NOAPI_NOINIT #if H5VL_IOD_DEBUG - fprintf(stderr, "Start map open %s with Loc ID %llu\n", name, loc_id); + fprintf(stderr, "Start map open %s with Loc ID %"PRIu64"\n", name, loc_id); #endif output.keytype_id = -1; @@ -406,7 +406,7 @@ H5VL_iod_server_map_set_cb(AXE_engine_t UNUSED axe_engine, data_cs = H5_checksum_crc64(val_buf, val_size); if(value_cs != data_cs) { - fprintf(stderr, "Errrr.. Network transfer Data corruption. expecting %llu, got %llu\n", + fprintf(stderr, "Errrr.. Network transfer Data corruption. expecting %"PRIu64", got %"PRIu64"\n", value_cs, data_cs); ret_value = FAIL; goto done; |