Description: Fix FTBFS with -Werror=format-security
Origin: upstream, commit: 288983a3f9b27378b8ae2ea5e920d0f8d227a947
Bug-Debian: http://bugs.debian.org/646258
Last-Updated: 2011-11-07
Applied-Upstream: 4.2.3
diff --git a/dynare++/sylv/cc/SylvException.cpp b/dynare++/sylv/cc/SylvException.cpp
index 4671ef8..4320613 100644
--- a/dynare++/sylv/cc/SylvException.cpp
+++ b/dynare++/sylv/cc/SylvException.cpp
@@ -26,7 +26,7 @@ void SylvException::printMessage() const
 	char mes[1500];
 	mes[0] = '\0';
 	printMessage(mes, 1499);
-	printf(mes);
+	puts(mes);
 }
 
 int SylvException::printMessage(char* str, int maxlen) const
