Skip to content

Commit

Permalink
Format source
Browse files Browse the repository at this point in the history
  • Loading branch information
derobins committed Jul 28, 2023
1 parent 8453d0d commit f5c2c03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/H5detect.c
Original file line number Diff line number Diff line change
Expand Up @@ -396,9 +396,9 @@ dt->shared->u.atomic.u.f.pad = H5T_PAD_ZERO;\n",

/* Variables for alignment of compound datatype */
if (!strcmp(d[i].varname, "SCHAR") || !strcmp(d[i].varname, "SHORT") ||
!strcmp(d[i].varname, "INT") || !strcmp(d[i].varname, "LONG") ||
!strcmp(d[i].varname, "LLONG") || !strcmp(d[i].varname, "FLOAT") ||
!strcmp(d[i].varname, "DOUBLE") || !strcmp(d[i].varname, "LDOUBLE")) {
!strcmp(d[i].varname, "INT") || !strcmp(d[i].varname, "LONG") || !strcmp(d[i].varname, "LLONG") ||
!strcmp(d[i].varname, "FLOAT") || !strcmp(d[i].varname, "DOUBLE") ||
!strcmp(d[i].varname, "LDOUBLE")) {
fprintf(rawoutstream, " H5T_NATIVE_%s_ALIGN_g = %lu;\n", d[i].varname,
(unsigned long)(d[i].comp_align));
}
Expand Down

0 comments on commit f5c2c03

Please sign in to comment.