trying to make it work on Solaris.. No success..

This commit is contained in:
snar
2008-05-20 16:26:44 +00:00
parent 1a16525dbc
commit 93b06c5503
2 changed files with 31 additions and 23 deletions

View File

@@ -31,7 +31,7 @@ sx_report_name(sx_report_t t)
int
sx_report(sx_report_t t, char* fmt, ...)
{
char buffer[1024];
char buffer[8192];
va_list ap;
va_start(ap,fmt);
@@ -68,8 +68,8 @@ int
sx_debug(char const* const file, char const* const func, int const line,
char* fmt, ...)
{
char buffer[1024];
char bline[1024];
char buffer[8192];
char bline[8192];
va_list ap;
va_start(ap,fmt);