From c68d7de66e34989318d751b7353919d2663f3a85 Mon Sep 17 00:00:00 2001 From: "ol.sc" Date: Tue, 3 Jul 2012 20:00:01 +0000 Subject: [PATCH] This is C, not 6502 ;-)) git-svn-id: svn://svn.cc65.org/cc65/trunk@5758 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- include/dirent.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)