diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/h5_vds-exc.c | 2 | ||||
-rw-r--r-- | examples/h5_vds-exclim.c | 2 | ||||
-rw-r--r-- | examples/h5_vds-percival.c | 2 | ||||
-rw-r--r-- | examples/h5_vds-simpleIO.c | 2 | ||||
-rw-r--r-- | examples/h5_vds.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/examples/h5_vds-exc.c b/examples/h5_vds-exc.c index 509b3e1..4a30d91 100644 --- a/examples/h5_vds-exc.c +++ b/examples/h5_vds-exc.c @@ -159,7 +159,7 @@ main (void) * Find number of mappings. */ status = H5Pget_virtual_count (dcpl, &num_map); - printf(" Number of mappings is %d\n", num_map); + printf(" Number of mappings is %lu\n", (unsigned long)num_map); /* * Get mapping parameters for each mapping. diff --git a/examples/h5_vds-exclim.c b/examples/h5_vds-exclim.c index af39c55..b24927b 100644 --- a/examples/h5_vds-exclim.c +++ b/examples/h5_vds-exclim.c @@ -160,7 +160,7 @@ main (void) * Find number of mappings. */ status = H5Pget_virtual_count (dcpl, &num_map); - printf(" Number of mappings is %d\n", num_map); + printf(" Number of mappings is %lu\n", (unsigned long)num_map); /* * Get mapping parameters for each mapping. diff --git a/examples/h5_vds-percival.c b/examples/h5_vds-percival.c index ba9e13f..79bb6b1 100644 --- a/examples/h5_vds-percival.c +++ b/examples/h5_vds-percival.c @@ -183,7 +183,7 @@ main (void) * Find number of mappings. */ status = H5Pget_virtual_count (dcpl, &num_map); - printf(" Number of mappings is %d\n", num_map); + printf(" Number of mappings is %lu\n", (unsigned long)num_map); /* * Get mapping parameters for each mapping. diff --git a/examples/h5_vds-simpleIO.c b/examples/h5_vds-simpleIO.c index e4b0018..795a87c 100644 --- a/examples/h5_vds-simpleIO.c +++ b/examples/h5_vds-simpleIO.c @@ -116,7 +116,7 @@ main (void) * Find the number of mappings. */ status = H5Pget_virtual_count (dcpl, &num_map); - printf(" Number of mappings is %d\n", num_map); + printf(" Number of mappings is %lu\n", (unsigned long)num_map); /* * Get mapping parameters for each mapping. diff --git a/examples/h5_vds.c b/examples/h5_vds.c index 7e128db..79a3f01 100644 --- a/examples/h5_vds.c +++ b/examples/h5_vds.c @@ -163,7 +163,7 @@ main (void) * Find the number of mappings. */ status = H5Pget_virtual_count (dcpl, &num_map); - printf(" Number of mappings is %d\n", num_map); + printf(" Number of mappings is %lu\n", (unsigned long)num_map); /* * Get mapping parameters for each mapping. |