From 8dbe146005414054484671bb4d399f5dfa021fd9 Mon Sep 17 00:00:00 2001 From: short <> Date: Wed, 27 Feb 2002 22:44:47 +0000 Subject: [PATCH] Workaround for m68k-pic-coff-gcc bug re initialized local variables (arrays?) --- common/gsm-api.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/gsm-api.c b/common/gsm-api.c index 0765c22..229232d 100644 --- a/common/gsm-api.c +++ b/common/gsm-api.c @@ -661,7 +661,7 @@ bool GetMemoryTypeString(char *memorytext, GSM_MemoryType *type) char *name; } GSM_MTStrings; - GSM_MTStrings mystring[] = { +static GSM_MTStrings mystring[] = { {GMT_ME,"ME"}, {GMT_SM,"SM"}, {GMT_FD,"FD"}, @@ -694,7 +694,7 @@ bool GetMemoryTypeID(char *memorytext, GSM_MemoryType *type) char *name; } GSM_MTStrings; - GSM_MTStrings mystring[] = { +static GSM_MTStrings mystring[] = { {GMT_ME,"ME"}, {GMT_SM,"SM"}, {GMT_FD,"FD"}, -- 1.8.3.1