summaryrefslogtreecommitdiff
path: root/src/map/script.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2019-08-25 19:42:37 +0200
committerHaru <haru@dotalux.com>2019-09-22 20:20:59 +0200
commit48a506fc86120adf9cfd6e3be20ac5865f3b9df5 (patch)
treed760cbaf9d28e0de4f38cf7bdf55efd68ea99c6d /src/map/script.c
parentf3e46d6a3817ad724d400d0bd5ab791cb24d98cb (diff)
downloadhercules-48a506fc86120adf9cfd6e3be20ac5865f3b9df5.tar.gz
hercules-48a506fc86120adf9cfd6e3be20ac5865f3b9df5.tar.bz2
hercules-48a506fc86120adf9cfd6e3be20ac5865f3b9df5.tar.xz
hercules-48a506fc86120adf9cfd6e3be20ac5865f3b9df5.zip
Mark some forgotten symbols as static
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/script.c')
-rw-r--r--src/map/script.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/script.c b/src/map/script.c
index 4bd8f2c85..c712eb01d 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -105,7 +105,7 @@ static inline void SETVALUE(struct script_buf *buf, int i, int n)
VECTOR_INDEX(*buf, i+2) = GetByte(n, 2);
}
-const char *script_op2name(int op)
+static const char *script_op2name(int op)
{
#define RETURN_OP_NAME(type) case type: return #type
switch( op ) {