summaryrefslogtreecommitdiffstats
path: root/src/H5FScache.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-04-23 22:55:18 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-04-23 22:55:18 (GMT)
commitd7d8cf1159fb819a544ac7aa46ee9b30b4a2c50b (patch)
tree4471fb2f71c7b86e9f11fc42a4f843dc9029f123 /src/H5FScache.c
parentb2df2fa6771f46c910fb2b248c9d8b885afc2592 (diff)
downloadhdf5-d7d8cf1159fb819a544ac7aa46ee9b30b4a2c50b.zip
hdf5-d7d8cf1159fb819a544ac7aa46ee9b30b4a2c50b.tar.gz
hdf5-d7d8cf1159fb819a544ac7aa46ee9b30b4a2c50b.tar.bz2
[svn-r16851] Description:
Clean up compiler warnings Tested on: Mac OS X/32 10.5.6 (amazon) (too minor to require h5committest)
Diffstat (limited to 'src/H5FScache.c')
-rw-r--r--src/H5FScache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FScache.c b/src/H5FScache.c
index b896197..5d901e9 100644
--- a/src/H5FScache.c
+++ b/src/H5FScache.c
@@ -203,7 +203,7 @@ HDfprintf(stderr, "%s: Load free space header, addr = %a\n", FUNC, addr);
HGOTO_ERROR(H5E_FSPACE, H5E_CANTLOAD, NULL, "wrong free space header version")
/* Client ID */
- fspace->client = *p++;
+ fspace->client = (H5FS_client_t)*p++;
if(fspace->client >= H5FS_NUM_CLIENT_ID)
HGOTO_ERROR(H5E_FSPACE, H5E_CANTLOAD, NULL, "unknown client ID in free space header")