From 8224d4967d9e833d55177b83a4aaf41fc664541b Mon Sep 17 00:00:00 2001 From: pabs Date: Mon, 30 Jan 2006 02:51:28 +0000 Subject: [PATCH] Fix 1356998: compile error on IRIX git-svn-id: http://svn.voria.com/code@119 1f10aa63-cdf2-0310-b900-c93c546f37ac --- ETL/trunk/ETL/_stringf.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ETL/trunk/ETL/_stringf.h b/ETL/trunk/ETL/_stringf.h index b701444..d266453 100644 --- a/ETL/trunk/ETL/_stringf.h +++ b/ETL/trunk/ETL/_stringf.h @@ -53,11 +53,7 @@ _ETL_BEGIN_CDECLS #else # ifdef HAVE_VSNPRINTF // This is the secondary method -# if defined(__CYGWIN__) || defined(_WIN32) -extern int vsnprintf(char *,unsigned int,const char*,va_list)ETL_NO_THROW; -# else -extern int vsnprintf(char *,int,const char*,va_list)ETL_NO_THROW; -# endif + extern int vsnprintf(char *,size_t,const char*,va_list)ETL_NO_THROW; # endif #endif -- 2.7.4