[svn-r1369]

added semicolons after the print out of the enum info
This commit is contained in:
Patrick Lu 1999-06-22 14:10:18 -05:00
parent f11cb6763b
commit 941cf3a134

View File

@ -324,12 +324,13 @@ H5G_stat_t statbuf;
printf("H5T_REFERENCE");
break;
case H5T_ENUM:
printf("H5T_ENUM ");
printf("H5T_ENUM\n");
indentation(indent + 3);
printf("{ ");
super = H5Tget_super(type);
print_datatype(super);
printf(" {");
printf(";");
print_enum(type);
printf("\n");
indentation (indent + 3);
printf("}\n");
break;
@ -1669,6 +1670,7 @@ static void print_enum(hid_t type){
printf("%"PRINTF_LL_WIDTH"d",
*((long_long*)(value+i*dst_size)));
}
printf(";");
}
/* Release resources */