diff options
author | David Young <dyoung@hdfgroup.org> | 2020-04-24 23:49:37 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-05-20 14:37:19 (GMT) |
commit | 1cff43a935dde0b5dc3751746af031ddf9c3a532 (patch) | |
tree | de0f30dd6362f73595610549f73afd4fca710c22 | |
parent | 0f2bc7d918cc65faf773853fe203c4f558abc0f4 (diff) | |
download | hdf5-1cff43a935dde0b5dc3751746af031ddf9c3a532.zip hdf5-1cff43a935dde0b5dc3751746af031ddf9c3a532.tar.gz hdf5-1cff43a935dde0b5dc3751746af031ddf9c3a532.tar.bz2 |
For compatibility with non-C99 Visual Studio versions, use "%" PRIuMAX
instead of "%ju".
-rw-r--r-- | test/swmr_sparse_reader.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/swmr_sparse_reader.c b/test/swmr_sparse_reader.c index 75a3c44..cdf03ba 100644 --- a/test/swmr_sparse_reader.c +++ b/test/swmr_sparse_reader.c @@ -116,7 +116,7 @@ check_dataset(hid_t fid, unsigned verbose, const symbol_info_t *symbol, symbol_t /* Emit informational message */ if(verbose) - HDfprintf(stderr, "Symbol = '%s', location = %ju,%ju\n", symbol->name, (uintmax_t)start[0], (uintmax_t)start[1]); + HDfprintf(stderr, "Symbol = '%s', location = %" PRIuMAX ",%" PRIuMAX "\n", symbol->name, (uintmax_t)start[0], (uintmax_t)start[1]); /* Read record from dataset */ record->rec_id = UINT64_MAX; @@ -127,7 +127,7 @@ check_dataset(hid_t fid, unsigned verbose, const symbol_info_t *symbol, symbol_t if(record->rec_id != start[1]) { HDfprintf(stderr, "*** ERROR ***\n"); HDfprintf(stderr, "Incorrect record value!\n"); - HDfprintf(stderr, "Symbol = '%s', location = %ju,%ju, record->rec_id = %" PRIu64 "\n", symbol->name, (uintmax_t)start[0], (uintmax_t)start[1], record->rec_id); + HDfprintf(stderr, "Symbol = '%s', location = %" PRIuMAX ",%" PRIuMAX ", record->rec_id = %" PRIu64 "\n", symbol->name, (uintmax_t)start[0], (uintmax_t)start[1], record->rec_id); return -1; } /* end if */ |