mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-19 16:50:46 +08:00
[svn-r1369]
added semicolons after the print out of the enum info
This commit is contained in:
parent
f11cb6763b
commit
941cf3a134
@ -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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user