src/hg/lib/web.c 1.166
1.166 2009/06/08 20:33:42 angie
Bumped up a buf size -- caught by Mark, checking the error_log for his new pstack dumps.
Index: src/hg/lib/web.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/lib/web.c,v
retrieving revision 1.165
retrieving revision 1.166
diff -b -B -U 4 -r1.165 -r1.166
--- src/hg/lib/web.c 7 Jun 2009 07:13:37 -0000 1.165
+++ src/hg/lib/web.c 8 Jun 2009 20:33:42 -0000 1.166
@@ -462,9 +462,9 @@
char *headerText, char *format, va_list args, boolean withHttpHeader,
boolean withLogo, boolean skipSectionHeader, boolean withHtmlHeader)
/* output a CGI and HTML header with the given title in printf format */
{
-char textOutBuf[512];
+char textOutBuf[1024];
va_list argscp;
va_copy(argscp,args);
vasafef(textOutBuf, sizeof(textOutBuf), format, argscp);