From ea7f4d748942ad0fd34f68502531db6c0b15aca5 Mon Sep 17 00:00:00 2001 From: Pascal de Bruijn Date: Mon, 17 Jul 2017 19:43:11 +0200 Subject: [PATCH] pragma: bring pragma_t enum in line with Pragmas struct fixes an inconsequential inconsistency, might prevent some confusion in the future. --- src/cc65/pragma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cc65/pragma.c b/src/cc65/pragma.c index de1979c12..d50d151a7 100644 --- a/src/cc65/pragma.c +++ b/src/cc65/pragma.c @@ -79,8 +79,8 @@ typedef enum { PRAGMA_INLINE_STDFUNCS, PRAGMA_LOCAL_STRINGS, PRAGMA_OPTIMIZE, - PRAGMA_REGVARADDR, PRAGMA_REGISTER_VARS, + PRAGMA_REGVARADDR, PRAGMA_REGVARS, /* obsolete */ PRAGMA_RODATA_NAME, PRAGMA_RODATASEG, /* obsolete */ -- 2.39.5