From 6c8b2be1ddd131c11b6617a1f8ce059c50dd5292 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Tue, 24 May 2016 23:46:50 -0700 Subject: [PATCH] preproc: make "StackPointer" a const char * The less non-const the better... Signed-off-by: H. Peter Anvin --- preproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preproc.c b/preproc.c index 14c32149..845f8fc1 100644 --- a/preproc.c +++ b/preproc.c @@ -389,7 +389,7 @@ static const char * const tasm_directives[] = { }; static int StackSize = 4; -static char *StackPointer = "ebp"; +static const char *StackPointer = "ebp"; static int ArgOffset = 8; static int LocalOffset = 0;