whitespace cleanup in sfbase.c

This commit is contained in:
nhmall
2025-06-03 20:45:08 -04:00
parent 356f451b1b
commit 28af1d6410
+4 -2
View File
@@ -208,7 +208,8 @@ void sfo_##dtyp(NHFILE *nhfp, xxx *d_##dtyp, const char *myname, int bfsz)
FILE *save_fplog = nhfp->fplog; \ FILE *save_fplog = nhfp->fplog; \
\ \
nhfp->fplog = 0; \ nhfp->fplog = 0; \
(*sfoflprocs[nhfp->fnidx].fn_x.sf_##dtyp)(nhfp, d_##dtyp, myname, bfsz); \ (*sfoflprocs[nhfp->fnidx].fn_x.sf_##dtyp)(nhfp, d_##dtyp, \
myname, bfsz); \
nhfp->fplog = save_fplog; \ nhfp->fplog = save_fplog; \
} \ } \
if (nhfp->fplog && !nhfp->eof) \ if (nhfp->fplog && !nhfp->eof) \
@@ -224,7 +225,8 @@ void sfi_##dtyp(NHFILE *nhfp, xxx *d_##dtyp, const char *myname, int bfsz)
\ \
nhfp->mode &= ~(CONVERTING | UNCONVERTING); \ nhfp->mode &= ~(CONVERTING | UNCONVERTING); \
nhfp->mode |= TURN_OFF_LOGGING; \ nhfp->mode |= TURN_OFF_LOGGING; \
(*sfiflprocs[nhfp->fnidx].fn_x.sf_##dtyp)(nhfp, d_##dtyp, myname, bfsz); \ (*sfiflprocs[nhfp->fnidx].fn_x.sf_##dtyp)(nhfp, d_##dtyp, \
myname, bfsz); \
nhfp->mode = save_mode; \ nhfp->mode = save_mode; \
} \ } \
if (!nhfp->eof) { \ if (!nhfp->eof) { \