summaryrefslogtreecommitdiff
path: root/Source/CursesDialog/form/fty_regex.c
diff options
context:
space:
mode:
Diffstat (limited to 'Source/CursesDialog/form/fty_regex.c')
-rw-r--r--Source/CursesDialog/form/fty_regex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CursesDialog/form/fty_regex.c b/Source/CursesDialog/form/fty_regex.c
index 0af1cef17..f90e0c108 100644
--- a/Source/CursesDialog/form/fty_regex.c
+++ b/Source/CursesDialog/form/fty_regex.c
@@ -40,7 +40,7 @@ static char *RegEx_Error(int code)
return 0;
}
-#define INIT register char *sp = RegEx_Init(instring);
+#define INIT char *sp = RegEx_Init(instring);
#define GETC() (*sp++)
#define PEEKC() (*sp)
#define UNGETC(c) (--sp)