From b8085ef1ee74ebb4745c7e5723f69d8e5cd76cae Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 10 Jan 2001 16:07:26 -0500 Subject: [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 --- tools/h5dump.c | 4 +--- 1 file changed, 1 insertion(+), 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); } -- cgit v0.12