summaryrefslogtreecommitdiffstats
path: root/src/H5VLnative.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-07-13 16:51:45 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-07-13 16:51:45 (GMT)
commit1aab0b3569269c09e4f8cab70b9e6c0c5b298797 (patch)
tree16b01d493897674abe88b4c990f96a23b36798a1 /src/H5VLnative.c
parente3f35800977504c45ec2847f1f23b7f5ba48ad76 (diff)
downloadhdf5-1aab0b3569269c09e4f8cab70b9e6c0c5b298797.zip
hdf5-1aab0b3569269c09e4f8cab70b9e6c0c5b298797.tar.gz
hdf5-1aab0b3569269c09e4f8cab70b9e6c0c5b298797.tar.bz2
[svn-r22573] update the public VL callbacks that take var_args to work
Diffstat (limited to 'src/H5VLnative.c')
-rw-r--r--src/H5VLnative.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5VLnative.c b/src/H5VLnative.c
index cdcfc3d..ef06ae7 100644
--- a/src/H5VLnative.c
+++ b/src/H5VLnative.c
@@ -1775,8 +1775,8 @@ H5VL_native_file_get(void *obj, H5VL_file_get_t get_type, hid_t UNUSED req, va_l
/* H5Fget_obj_count */
case H5VL_FILE_GET_OBJ_COUNT:
{
- ssize_t *ret = va_arg (arguments, ssize_t *);
unsigned types = va_arg (arguments, unsigned);
+ ssize_t *ret = va_arg (arguments, ssize_t *);
size_t obj_count = 0; /* Number of opened objects */
f = (H5F_t *)obj;