[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
This commit is contained in:
Bill Wendling 2001-01-10 16:07:26 -05:00
parent 9078455217
commit b8085ef1ee

View File

@ -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);
}