From 283dca57502dc79e463c0f6b40fd5925d6295302 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 21 Apr 2006 20:32:24 +0000 Subject: [PATCH] Made makewad.c compilable as C. SVN r61 (trunk) --- tools/makewad/makewad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/makewad/makewad.c b/tools/makewad/makewad.c index 76601e9c8..48e069f13 100644 --- a/tools/makewad/makewad.c +++ b/tools/makewad/makewad.c @@ -77,7 +77,7 @@ int appendtozip (zipFile zipfile, const char * zipname, const char *filename) zip_fileinfo zip_inf; time_t currenttime; - tm * ltime; + struct tm * ltime; time(¤ttime); ltime = localtime(¤ttime);