From: Tyrel D. <ty...@us...> - 2010-12-15 00:33:56
|
Update of /cvsroot/sblim/gather/util In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv7942/util Modified Files: mlog.c Log Message: Updated fix 3109840: mlog with arguments segfaults on M_SHOW Index: mlog.c =================================================================== RCS file: /cvsroot/sblim/gather/util/mlog.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- mlog.c 15 Nov 2010 23:36:17 -0000 1.4 +++ mlog.c 15 Dec 2010 00:33:48 -0000 1.5 @@ -55,7 +55,7 @@ syslog(priosysl,buf); if (errout) { - vfprintf(stderr,buf); + fprintf(stderr,buf); } va_end(ap); } |