From ed123d7555b3bf305d3cf8e27a30622d1fe1b861 Mon Sep 17 00:00:00 2001 From: Frank Baker Date: Fri, 26 Oct 2001 10:11:45 -0500 Subject: [PATCH] [svn-r4574] Purpose: Bugfix Description: H5Awrite -- corrected final parameter type to 'const void' Platforms tested: IE 5 --- doc/html/RM_H5A.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/html/RM_H5A.html b/doc/html/RM_H5A.html index cc329b7f92..e36f24ffaa 100644 --- a/doc/html/RM_H5A.html +++ b/doc/html/RM_H5A.html @@ -285,7 +285,7 @@ See Attributes in the
Signature:
herr_t H5Awrite(hid_t attr_id, hid_t mem_type_id, - void *buf + const void *buf )
Purpose:
Writes data to an attribute. @@ -308,7 +308,7 @@ See Attributes in the
IN: Identifier of an attribute to write.
hid_t mem_type_id
IN: Identifier of the attribute datatype (in memory). -
void *buf +
const void *buf
IN: Data to be written.
Returns: