summaryrefslogtreecommitdiffstats
path: root/src/H5F.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-04-19 23:11:06 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-04-19 23:11:06 (GMT)
commit7438609ee2a445521b461faa122554b253283f51 (patch)
tree8fd14659340dc57719e85ddc5a92edbca64bcb66 /src/H5F.c
parentcfea54b1e255966549829597c18f470f7156be1d (diff)
downloadhdf5-7438609ee2a445521b461faa122554b253283f51.zip
hdf5-7438609ee2a445521b461faa122554b253283f51.tar.gz
hdf5-7438609ee2a445521b461faa122554b253283f51.tar.bz2
[svn-r2162] Various small fixes to address SGI compiler warnings.
Diffstat (limited to 'src/H5F.c')
-rw-r--r--src/H5F.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/H5F.c b/src/H5F.c
index eb60325..2ebbf9c 100644
--- a/src/H5F.c
+++ b/src/H5F.c
@@ -31,6 +31,8 @@ static char RcsId[] = "@(#)$Revision$";
#include <H5FDsec2.h> /*Posix unbuffered I/O */
#include <H5FDstdio.h> /* Standard C buffered I/O */
+#include <H5FDqak.h> /* Custom unbuffered I/O */
+
/* Packages needed by this file... */
#include <H5private.h> /*library functions */
#include <H5Aprivate.h> /*attributes */
@@ -727,13 +729,13 @@ H5F_new(H5F_file_t *shared, hid_t fcpl_id, hid_t fapl_id)
* new file handle. We do this early because some values might need
* to change as the file is being opened.
*/
- fcpl = (H5P_DEFAULT==fcpl_id)? &H5F_create_dflt : H5I_object(fcpl_id);
+ fcpl = (H5P_DEFAULT==fcpl_id)? &H5F_create_dflt : (const H5F_create_t *)H5I_object(fcpl_id);
if (NULL==(f->shared->fcpl=H5P_copy(H5P_FILE_CREATE, fcpl))) {
HRETURN_ERROR(H5E_FILE, H5E_CANTINIT, NULL,
"unable to copy file creation property list");
}
- fapl = (H5P_DEFAULT==fapl_id)? &H5F_access_dflt : H5I_object(fapl_id);
+ fapl = (H5P_DEFAULT==fapl_id)? &H5F_access_dflt : (const H5F_access_t *)H5I_object(fapl_id);
f->shared->mdc_nelmts = fapl->mdc_nelmts;
f->shared->rdcc_nelmts = fapl->rdcc_nelmts;
f->shared->rdcc_nbytes = fapl->rdcc_nbytes;