Patch for gcc11/RHEL9

This commit is contained in:
Jean-Paul Chaput 2022-01-12 17:23:08 +01:00 committed by Tim Edwards
parent b5f2b75768
commit f354920133
1 changed files with 2 additions and 2 deletions

View File

@ -2829,12 +2829,12 @@ DBCellWriteFile(cellDef, f)
#define FPRINTF(f,s)\
{\
if (fprintf(f,s) == EOF) goto ioerror;\
if (fputs(s,f) == EOF) goto ioerror;\
DBFileOffset += strlen(s);\
}
#define FPRINTR(f,s)\
{\
if (fprintf(f,s) == EOF) return 1;\
if (fputs(s,f) == EOF) return 1;\
DBFileOffset += strlen(s);\
}