diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-07-30 01:59:24 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-07-30 01:59:24 (GMT) |
commit | e99906f5175e1516a9f28b3acbcffd962637ca89 (patch) | |
tree | 71119df458d9eebee588761243ba6d5205ee816d /test/pool.c | |
parent | 0836a8cf5652392f59d3917446a7ca2af9234e09 (diff) | |
download | hdf5-e99906f5175e1516a9f28b3acbcffd962637ca89.zip hdf5-e99906f5175e1516a9f28b3acbcffd962637ca89.tar.gz hdf5-e99906f5175e1516a9f28b3acbcffd962637ca89.tar.bz2 |
[svn-r17268] Description:
Bring r17266 from 1.8 branch to trunk:
Clean up various compiler warnings from IRIX64 build
Tested on:
Mac OS X/32 (amazon) debug & production
(yes, I know it's not an IRIX64 system :-)
Too minor to require h5committest
Diffstat (limited to 'test/pool.c')
-rw-r--r-- | test/pool.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/pool.c b/test/pool.c index 1e26109..22658ec 100644 --- a/test/pool.c +++ b/test/pool.c @@ -119,7 +119,6 @@ static int test_close_one(void) { H5MP_pool_t *mp; /* Memory pool */ - void *spc1; /* Pointer to space allocated */ /* * Test memory pool closing @@ -131,7 +130,7 @@ test_close_one(void) TEST_ERROR /* Allocate space in pool */ - if(NULL == (spc1 = H5MP_malloc(mp, (size_t)MPOOL_NORMAL_BLOCK))) + if(NULL == H5MP_malloc(mp, (size_t)MPOOL_NORMAL_BLOCK)) TEST_ERROR /* Close the memory pool */ |