1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-12 09:09:09 +00:00

(svn r2390) - Codechange: Fix some warnings on GCC 4.0.0

This commit is contained in:
hackykid
2005-06-01 11:52:44 +00:00
parent 351d7aaa9f
commit f7dcd2e834
10 changed files with 18 additions and 12 deletions

View File

@@ -878,7 +878,7 @@ static bool InitWriteZlib(void)
static void WriteZlibLoop(z_streamp z, byte *p, uint len, int mode)
{
char buf[1024]; // output buffer
byte buf[1024]; // output buffer
int r;
uint n;
z->next_in = p;