From: ol.sc
Date: Tue, 3 Jul 2012 20:00:01 +0000 (+0000)
Subject: This is C, not 6502 ;-))
X-Git-Tag: V2.14~313
X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c68d7de66e34989318d751b7353919d2663f3a85;p=cc65
This is C, not 6502 ;-))
git-svn-id: svn://svn.cc65.org/cc65/trunk@5758 b7a2c559-68d2-44c3-8de9-860c34a00d81
---
diff --git a/include/dirent.h b/include/dirent.h
index 3e75c7c21..857aad4db 100644
--- a/include/dirent.h
+++ b/include/dirent.h
@@ -73,8 +73,8 @@ struct dirent {
} d_mtime;
};
-#define _DE_ISREG(t) ((t) != $0F)
-#define _DE_ISDIR(t) ((t) == $0F)
+#define _DE_ISREG(t) ((t) != 0x0F)
+#define _DE_ISDIR(t) ((t) == 0x0F)
#define _DE_ISLBL(t) (0)
#define _DE_ISLNK(t) (0)