diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-04-02 15:29:35 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-04-02 15:29:35 (GMT) |
commit | d165e1d8e7c01f201dcb228464064a8f8e50174b (patch) | |
tree | d1bf770d9e425bb2f7bc264e83abb7f7baa2d777 /src/H5Opline.c | |
parent | ea7a5346d7a7387a627142bd3a1e7b597f2c4a6d (diff) | |
download | hdf5-d165e1d8e7c01f201dcb228464064a8f8e50174b.zip hdf5-d165e1d8e7c01f201dcb228464064a8f8e50174b.tar.gz hdf5-d165e1d8e7c01f201dcb228464064a8f8e50174b.tar.bz2 |
[svn-r12191] Purpose:
Bug fix
Description:
Correct the handling of the group creation property list when copying
objects with the "create intermediate groups" flag.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest (once I pay attention to the compiler
warnings... :-)
Diffstat (limited to 'src/H5Opline.c')
-rw-r--r-- | src/H5Opline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Opline.c b/src/H5Opline.c index 7746987..d27cfb2 100644 --- a/src/H5Opline.c +++ b/src/H5Opline.c @@ -441,7 +441,7 @@ H5O_pline_free (void *mesg) *------------------------------------------------------------------------- */ static herr_t -H5O_pline_pre_copy_file(H5F_t *file_src, const H5O_msg_class_t *type, void *mesg_src, void *_udata) +H5O_pline_pre_copy_file(H5F_t *file_src, const H5O_msg_class_t UNUSED *type, void *mesg_src, void *_udata) { H5O_pline_t *pline_src = (H5O_pline_t *)mesg_src; /* Source datatype */ H5D_copy_file_ud_t *udata = (H5D_copy_file_ud_t *)_udata; /* Dataset copying user data */ |