summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2001-01-10 21:07:26 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2001-01-10 21:07:26 (GMT)
commitb8085ef1ee74ebb4745c7e5723f69d8e5cd76cae (patch)
tree6aa669b6252aa3be16696507bf1dfb61cf037817 /tools
parent9078455217b63c294062addf9571006a46e9ddba (diff)
downloadhdf5-b8085ef1ee74ebb4745c7e5723f69d8e5cd76cae.zip
hdf5-b8085ef1ee74ebb4745c7e5723f69d8e5cd76cae.tar.gz
hdf5-b8085ef1ee74ebb4745c7e5723f69d8e5cd76cae.tar.bz2
[svn-r3262] Purpose:
Annoying code cleanup Description: This code could all be on one line, but wasn't for some reason. Solution: Made it into one printf() call. Platforms tested: Linux
Diffstat (limited to 'tools')
-rw-r--r--tools/h5dump.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/h5dump.c b/tools/h5dump.c
index b6cf9ee..1f854c4 100644
--- a/tools/h5dump.c
+++ b/tools/h5dump.c
@@ -2022,7 +2022,5 @@ static void
dump_oid(hid_t oid)
{
indentation(indent + COL);
- printf("%s %s ", OBJID, BEGIN);
- printf("%d", oid);
- printf(" %s\n", END);
+ printf("%s %s %d %s\n", OBJID, BEGIN, oid, END);
}