From b5bbc23b2c678509dbe02cab4308509808a654ad Mon Sep 17 00:00:00 2001 From: Darkvater Date: Sun, 16 Apr 2006 11:33:26 +0000 Subject: [PATCH] (svn r4447) - NewGRF: It seems I committed printing action NOP Action 0x0C which is mainly used for comments. So leave it in, but fix the created warning. Use proper action name for check_length() in Action 0x10 --- newgrf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/newgrf.c b/newgrf.c index c38b4786a5..93339ad80b 100644 --- a/newgrf.c +++ b/newgrf.c @@ -15,6 +15,7 @@ #include "sprite.h" #include "newgrf.h" #include "variables.h" +#include "string.h" #include "bridge.h" #include "economy.h" #include "newgrf_engine.h" @@ -2319,7 +2320,7 @@ static void DefineGotoLabel(byte *buf, int len) GRFLabel *label; - check_length(len, 1, "GRFLabel"); + check_length(len, 1, "DefineGotoLabel"); buf++; len--; label = malloc(sizeof(*label));