summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-09-08 13:03:38 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-09-08 13:03:38 (GMT)
commiteae58095d0abe3e50b6ca1e63a5924fab5de9714 (patch)
treeb2afb0215bcd67d5e7adb0d8b984820a9c6c3bcc /tools
parent097ae3ae4bcaadc96d8f8313aac4c1f9c7172378 (diff)
downloadhdf5-eae58095d0abe3e50b6ca1e63a5924fab5de9714.zip
hdf5-eae58095d0abe3e50b6ca1e63a5924fab5de9714.tar.gz
hdf5-eae58095d0abe3e50b6ca1e63a5924fab5de9714.tar.bz2
[svn-r17455] Description:
Correct a 'hsize_t *' to 'hsize_t' and vice versa. Tested on: Mac OS X/32 10.5.8 (amazon) in debug mode Mac OS X/32 10.5.8 (amazon) w/C++ & FORTRAN, w/threadsafe, in production mode (too minor to require h5committest)
Diffstat (limited to 'tools')
-rw-r--r--tools/lib/h5tools.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lib/h5tools.c b/tools/lib/h5tools.c
index 05207de..060a49f 100644
--- a/tools/lib/h5tools.c
+++ b/tools/lib/h5tools.c
@@ -3172,8 +3172,8 @@ h5tools_dump_datatype(FILE *stream, const h5tool_format_t *info,
h5tools_str_append(&buffer, "%s", h5tools_dump_header_format->datatypeend);
h5tools_str_append(&buffer, "\n");
- curr_pos = h5tools_render_element(stream, info, ctx, &buffer, curr_pos,
- ncols, &elmt_counter, 0);
+ curr_pos = h5tools_render_element(stream, info, ctx, &buffer, &curr_pos,
+ ncols, elmt_counter, 0);
ctx->need_prefix = TRUE;
ctx->indent_level--;