[commit] r1927 - trunk/GME/Parser

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Tue May 15 10:31:40 CDT 2012


Author: ksmyth
Date: Tue May 15 10:31:40 2012
New Revision: 1927

Log:
Fix XML formatting (vararg mixup)

Modified:
   trunk/GME/Parser/GenParser.cpp

Modified: trunk/GME/Parser/GenParser.cpp
==============================================================================
--- trunk/GME/Parser/GenParser.cpp	Tue May 15 10:31:29 2012	(r1926)
+++ trunk/GME/Parser/GenParser.cpp	Tue May 15 10:31:40 2012	(r1927)
@@ -63,7 +63,7 @@
 	va_start(args, format);
 
 	std::tstring desc;
-	Format(desc, format, args);
+	vFormat(desc, format, args);
 
 	std::tstring str;
 	if( locator != NULL )


More information about the gme-commit mailing list