From ba49a32c3a5b10bfe1ae90edd08f06acad0389fd Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Thu, 16 Jan 2014 08:34:10 +0100 Subject: Another VarArgs fix. This time using va_copy() on platforms that have it and simple assignment on platforms that don't. --- src/Log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Log.h') diff --git a/src/Log.h b/src/Log.h index d33fc2871..cba248dae 100644 --- a/src/Log.h +++ b/src/Log.h @@ -14,7 +14,7 @@ private: public: cLog(const AString & a_FileName); ~cLog(); - void Log(const char * a_Format, va_list argList, va_list argListCopy); + void Log(const char * a_Format, va_list argList); void Log(const char * a_Format, ...); // tolua_begin void SimpleLog(const char * a_String); -- cgit v1.2.3