mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r20551] Description:
Correct 'FILE **' back to 'FILE *' for H5Fget_vfd_handle call. Tested on: FreeBSD/32 8.2 (loyalty) w/gcc 4.6 & debug FreeBSD/64 8.2 (freedom) w/gcc 4.6 & debug Solaris 2.6 (linew)
This commit is contained in:
parent
96a96fafaa
commit
60bf7fddf1
@ -1223,7 +1223,7 @@ test_stdio(void)
|
||||
hid_t fapl = -1;
|
||||
hid_t access_fapl = -1;
|
||||
char filename[1024];
|
||||
FILE **fhandle = NULL;
|
||||
FILE *fhandle = NULL;
|
||||
hsize_t file_size = 0;
|
||||
|
||||
|
||||
@ -1253,7 +1253,7 @@ test_stdio(void)
|
||||
/* Check file handle API */
|
||||
if(H5Fget_vfd_handle(file, H5P_DEFAULT, (void **)&fhandle) < 0)
|
||||
TEST_ERROR;
|
||||
if(NULL == *fhandle)
|
||||
if(NULL == fhandle)
|
||||
TEST_ERROR;
|
||||
|
||||
/* Check file size API */
|
||||
|
Loading…
x
Reference in New Issue
Block a user