Patch for gcc11/RHEL9

This commit is contained in:
Jean-Paul Chaput
2022-01-12 15:33:42 -05:00
committed by Tim Edwards
parent b5f2b75768
commit f354920133
+2 -2
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);\
}