From: Oliver Schmidt Date: Mon, 6 Nov 2017 20:02:14 +0000 (+0100) Subject: Use macro actually defined in cbm_filetype.h. X-Git-Tag: V2.17~78 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=afcfba935594879742d85469d3cb1c38a25fa6f4;p=cc65 Use macro actually defined in cbm_filetype.h. --- diff --git a/include/dirent.h b/include/dirent.h index b5e1be135..124c7f224 100644 --- a/include/dirent.h +++ b/include/dirent.h @@ -107,7 +107,7 @@ struct dirent { #define _DE_ISREG(t) (((t) & _CBM_T_REG) != 0) #define _DE_ISDIR(t) ((t) == _CBM_T_DIR) -#define _DE_ISLBL(t) ((t) == _CBM_T_HDR) +#define _DE_ISLBL(t) ((t) == _CBM_T_HEADER) #define _DE_ISLNK(t) ((t) == _CBM_T_LNK) #elif defined(__LYNX__)