summaryrefslogtreecommitdiffstats
path: root/src/H5Fprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-07-08 21:05:27 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-07-08 21:05:27 (GMT)
commitf2048a23790abf49ade6fea0acca0b2b27e4f0ff (patch)
tree4a1b0eddb2430ad7053573e44c30af675f8b85b5 /src/H5Fprivate.h
parent720dcef073b2b6622b0a6fc3460c5d512880a6d5 (diff)
downloadhdf5-f2048a23790abf49ade6fea0acca0b2b27e4f0ff.zip
hdf5-f2048a23790abf49ade6fea0acca0b2b27e4f0ff.tar.gz
hdf5-f2048a23790abf49ade6fea0acca0b2b27e4f0ff.tar.bz2
[svn-r7184] Purpose:
Code cleanup Description: Clean up various warnings from lint Platforms tested: FreeBSD 4.8 (sleipnir) no major changes requiring h5committest
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r--src/H5Fprivate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h
index 6c81e21..fb5d8ca 100644
--- a/src/H5Fprivate.h
+++ b/src/H5Fprivate.h
@@ -297,7 +297,7 @@ typedef struct H5F_t H5F_t;
/* Definition for size of raw data chunk cache(bytes) */
#define H5F_ACS_DATA_CACHE_BYTE_SIZE_NAME "rdcc_nbytes"
#define H5F_ACS_DATA_CACHE_BYTE_SIZE_SIZE sizeof(size_t)
-#define H5F_ACS_DATA_CACHE_BYTE_SIZE_DEF 1024*1024
+#define H5F_ACS_DATA_CACHE_BYTE_SIZE_DEF (1024*1024)
/* Definition for preemption read chunks first */
#define H5F_ACS_PREEMPT_READ_CHUNKS_NAME "rdcc_w0"
@@ -324,7 +324,7 @@ typedef struct H5F_t H5F_t;
is allowed by file driver */
#define H5F_ACS_SIEVE_BUF_SIZE_NAME "sieve_buf_size"
#define H5F_ACS_SIEVE_BUF_SIZE_SIZE sizeof(size_t)
-#define H5F_ACS_SIEVE_BUF_SIZE_DEF 64*1024
+#define H5F_ACS_SIEVE_BUF_SIZE_DEF (64*1024)
/* Definition for minimum "small data" allocation block size (when
aggregating "small" raw data allocations. */