summaryrefslogtreecommitdiff
path: root/newgrf.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-04-16 20:24:10 +0000
committerpeter1138 <peter1138@openttd.org>2006-04-16 20:24:10 +0000
commite3cd311d35f85805dd4be95f2c72b2685b10e7f4 (patch)
tree7ea8d6607282d079ee013921cc3959317499dc11 /newgrf.c
parent276672862992b21db488fd1fb15db879a2694de8 (diff)
downloadopenttd-e3cd311d35f85805dd4be95f2c72b2685b10e7f4.tar.xz
(svn r4453) - NewGRF: fix two compile warnings.
Diffstat (limited to 'newgrf.c')
-rw-r--r--newgrf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/newgrf.c b/newgrf.c
index 926f486ea..63aecab5d 100644
--- a/newgrf.c
+++ b/newgrf.c
@@ -935,7 +935,6 @@ static bool StationChangeInfo(uint stid, int numinfo, int prop, byte **bufp, int
l--;
p--;
- assert(p >= 0);
free(stat->layouts[l][p]);
stat->layouts[l][p] = layout;
}
@@ -2096,7 +2095,7 @@ static void GRFComment(byte *buf, int len)
static char comment[256];
if (len == 1) return;
- ttd_strlcpy(comment, buf + 1, minu(sizeof(comment), len));
+ ttd_strlcpy(comment, (char*)(buf + 1), minu(sizeof(comment), len));
grfmsg(GMS_NOTICE, "GRFComment: %s", comment);
}