Patch for gcc11/RHEL9
This commit is contained in:
parent
b5f2b75768
commit
f354920133
|
|
@ -2829,12 +2829,12 @@ DBCellWriteFile(cellDef, f)
|
||||||
|
|
||||||
#define FPRINTF(f,s)\
|
#define FPRINTF(f,s)\
|
||||||
{\
|
{\
|
||||||
if (fprintf(f,s) == EOF) goto ioerror;\
|
if (fputs(s,f) == EOF) goto ioerror;\
|
||||||
DBFileOffset += strlen(s);\
|
DBFileOffset += strlen(s);\
|
||||||
}
|
}
|
||||||
#define FPRINTR(f,s)\
|
#define FPRINTR(f,s)\
|
||||||
{\
|
{\
|
||||||
if (fprintf(f,s) == EOF) return 1;\
|
if (fputs(s,f) == EOF) return 1;\
|
||||||
DBFileOffset += strlen(s);\
|
DBFileOffset += strlen(s);\
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue