]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/fputs.c
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / common / fputs.c
index c4c87eaa3a6fe3d3e85928ef58f101697e7f17e1..26c20cbe243944fef3bbb32df4fe38f1403f4011 100644 (file)
@@ -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 */