aboutsummaryrefslogtreecommitdiff
path: root/base/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'base/main.cpp')
-rw-r--r--base/main.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/base/main.cpp b/base/main.cpp
index 8b3426324a..f5f604b7b6 100644
--- a/base/main.cpp
+++ b/base/main.cpp
@@ -515,11 +515,7 @@ void CDECL debug(int level, const char *s, ...) {
return;
va_start(va, s);
-#ifdef __SYMBIAN32__
- vsprintf(buf, s, va);
-#else
vsnprintf(buf, STRINGBUFLEN, s, va);
-#endif
va_end(va);
debugHelper(buf);
@@ -530,11 +526,7 @@ void CDECL debug(const char *s, ...) {
va_list va;
va_start(va, s);
-#ifdef __SYMBIAN32__
- vsprintf(buf, s, va);
-#else
vsnprintf(buf, STRINGBUFLEN, s, va);
-#endif
va_end(va);
debugHelper(buf);