[svn-r20552] Description:
Bring r20551 from trunk to 1.8 branch: Correct 'FILE **' back to 'FILE *' for H5Fget_vfd_handle call. Tested on: FreeBSD/32 6.3 (duty) w/debug (h5committest performed on trunk)
This commit is contained in:
@@ -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;
|
||||
|
||||
TESTING("STDIO file driver");
|
||||
@@ -1252,7 +1252,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 */
|
||||
|
||||
Reference in New Issue
Block a user