diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-08-08 17:52:17 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-08-08 17:52:17 (GMT) |
commit | 6680e94aebf3f7b2929c740c7951b4bcf3f9b555 (patch) | |
tree | 6f0d4a47c1ad88413ab94574cd2e8eac75253214 /test/unlink.c | |
parent | d8397a6f426227d09d20e647ce8b12b8c6295b2d (diff) | |
download | hdf5-6680e94aebf3f7b2929c740c7951b4bcf3f9b555.zip hdf5-6680e94aebf3f7b2929c740c7951b4bcf3f9b555.tar.gz hdf5-6680e94aebf3f7b2929c740c7951b4bcf3f9b555.tar.bz2 |
[svn-r5843] Purpose:
Code cleanup
Description:
Clean up a few warnings which were showing up with --enable-production
turned on.
Platforms tested:
FreeBSD 4.6 (sleipnir) serial & parallel
Diffstat (limited to 'test/unlink.c')
-rw-r--r-- | test/unlink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unlink.c b/test/unlink.c index 2cc7efb..2f4ca7b 100644 --- a/test/unlink.c +++ b/test/unlink.c @@ -298,8 +298,8 @@ test_rename(hid_t file) static int test_new_move(void) { - hid_t fapl, file_a, file_b; - hid_t grp_1, grp_2, grp_move, moved_grp; + hid_t fapl, file_a, file_b=(-1); + hid_t grp_1=(-1), grp_2=(-1), grp_move=(-1), moved_grp=(-1); char filename[1024]; TESTING("new move"); |