summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIra Rice <irarice@gmail.com>2008-11-08 19:57:51 +0000
committerIra Rice <irarice@gmail.com>2008-11-08 19:57:51 +0000
commitb51c608c07a48a2c6d4fb6332a4ba436510e3273 (patch)
tree73d7b831b51897046669b579229dc6884f2293fc
parent38360d3cd26b61a5162b8ec5b526de19e39835f9 (diff)
downloadmana-client-b51c608c07a48a2c6d4fb6332a4ba436510e3273.tar.gz
mana-client-b51c608c07a48a2c6d4fb6332a4ba436510e3273.tar.bz2
mana-client-b51c608c07a48a2c6d4fb6332a4ba436510e3273.tar.xz
mana-client-b51c608c07a48a2c6d4fb6332a4ba436510e3273.zip
Ported a TMW compile error fix reported by Martin Michlmayr.
-rw-r--r--src/utils/strprintf.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/utils/strprintf.cpp b/src/utils/strprintf.cpp
index 352696f1..48fc3814 100644
--- a/src/utils/strprintf.cpp
+++ b/src/utils/strprintf.cpp
@@ -21,10 +21,8 @@
* $Id: strprintf.cpp 3416 2007-08-06 06:20:14Z gmelquio $
*/
-#ifndef _TMW_UTILS_TOSTRING_H
-#define _TMW_UTILS_TOSTRING_H
-
#include <cstdarg>
+#include <cstdio>
#include "strprintf.h"
@@ -50,4 +48,3 @@ std::string strprintf(char const *format, ...)
return res;
}
-#endif