X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libsrc%2Fcommon%2Ffputs.c;h=26c20cbe243944fef3bbb32df4fe38f1403f4011;hb=85885001b133e2dc320b6f6459259afa69784ca8;hp=c4c87eaa3a6fe3d3e85928ef58f101697e7f17e1;hpb=44fd1082ae807a0b6b4046c65914e20a7e27101c;p=cc65 diff --git a/libsrc/common/fputs.c b/libsrc/common/fputs.c index c4c87eaa3..26c20cbe2 100644 --- a/libsrc/common/fputs.c +++ b/libsrc/common/fputs.c @@ -17,7 +17,7 @@ int __fastcall__ fputs (const char* s, register FILE* f) { /* Check if the file is open or if there is an error condition */ if ((f->f_flags & _FOPEN) == 0 || (f->f_flags & (_FERROR | _FEOF)) != 0) { - return EOF; + return EOF; } /* Write the string */