]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/fdopen.c
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / common / fdopen.c
index fc8d0f77682bd07b37ce205b02186ca4d23c2abb..43559ce8b92bb268caa575dc10777a3008ccf26d 100644 (file)
@@ -14,7 +14,7 @@
 
 
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
@@ -29,8 +29,8 @@ FILE* __fastcall__ fdopen (int handle, const char* /*mode*/)
         f->f_fd    = handle;
         f->f_flags = _FOPEN;
     } else {
-               /* No slots */
-               _seterrno (EMFILE);      /* Too many files */
+        /* No slots */
+        _seterrno (EMFILE);      /* Too many files */
     }
 
     /* Return the file descriptor */