]> git.sur5r.net Git - cc65/commitdiff
Minor adjustment to Apple II coding style (two spaces for macro definitions).
authorol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 24 Jun 2012 19:59:49 +0000 (19:59 +0000)
committerol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 24 Jun 2012 19:59:49 +0000 (19:59 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5739 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/dirent.h

index 2a4f42f1767375f15e49ab832a66c47ebe662354..bcc44834eec3b1fd95207b81b2f1c5c37d03d4ce 100644 (file)
@@ -73,10 +73,10 @@ struct dirent {
     }             d_mtime;
 };
 
-#define _DE_ISREG(t)    ((t) != $0F)
-#define _DE_ISDIR(t)    ((t) == $0F)
-#define _DE_ISLBL(t)    (0)
-#define _DE_ISLNK(t)    (0)
+#define _DE_ISREG(t)  ((t) != $0F)
+#define _DE_ISDIR(t)  ((t) == $0F)
+#define _DE_ISLBL(t)  (0)
+#define _DE_ISLNK(t)  (0)
 
 #elif defined(__ATARI__)