[svn-r7615] Purpose:

Code cleanup

Description:
    Clean up various compiler warnings.

Platforms tested:
    FreeBSD 4.9 (sleipnir) w/parallel
    too minor to require h5committest
This commit is contained in:
Quincey Koziol 2003-10-13 14:26:55 -05:00
parent 6e9280392a
commit 4a4f9cd82d
3 changed files with 2 additions and 3 deletions

View File

@ -112,7 +112,6 @@ void compact_dataset(char *filename)
hbool_t use_gpfs = FALSE; hbool_t use_gpfs = FALSE;
hid_t iof, plist, dcpl, dxpl, dataset, filespace; hid_t iof, plist, dcpl, dxpl, dataset, filespace;
hsize_t file_dims [DIM]={SIZE,SIZE}; hsize_t file_dims [DIM]={SIZE,SIZE};
hsize_t count[DIM]={1,1};
double outme [SIZE][SIZE], inme[SIZE][SIZE]; double outme [SIZE][SIZE], inme[SIZE][SIZE];
char dname[]="dataset"; char dname[]="dataset";
herr_t ret; herr_t ret;

View File

@ -36,7 +36,7 @@ int ngroups = 512; /* number of groups to create in root
* group. */ * group. */
int facc_type = FACC_MPIO; /*Test file access type */ int facc_type = FACC_MPIO; /*Test file access type */
herr_t (*old_func)(void*); /* previous error handler */ H5E_auto_t old_func; /* previous error handler */
void *old_client_data; /* previous error handler arg.*/ void *old_client_data; /* previous error handler arg.*/
/* other option flags */ /* other option flags */

View File

@ -117,7 +117,7 @@ extern int dim0, dim1; /*Dataset dimensions */
extern int chunkdim0, chunkdim1; /*Chunk dimensions */ extern int chunkdim0, chunkdim1; /*Chunk dimensions */
extern int nerrors; /*errors count */ extern int nerrors; /*errors count */
extern int verbose; /*verbose, default as no. */ extern int verbose; /*verbose, default as no. */
extern herr_t (*old_func)(void*); /*previous error handler */ extern H5E_auto_t old_func; /* previous error handler */
extern void *old_client_data; /*previous error handler arg.*/ extern void *old_client_data; /*previous error handler arg.*/
extern int facc_type; /*Test file access type */ extern int facc_type; /*Test file access type */