Index: src/processor/symbolic_constants_win.cc |
diff --git a/src/processor/symbolic_constants_win.cc b/src/processor/symbolic_constants_win.cc |
index 333aa04174dab8319ba1e73d09c9b47d9ccdd5bb..adb0cc0ad242be86829a6dc5f36bb2853eb1d2d0 100644 |
--- a/src/processor/symbolic_constants_win.cc |
+++ b/src/processor/symbolic_constants_win.cc |
@@ -33,9 +33,9 @@ |
// |
// Author: Ben Wagner |
-#include <cstdio> |
#include <string> |
+#include "common/stdio.h" |
#include "google_breakpad/common/breakpad_types.h" |
#include "google_breakpad/common/minidump_exception_win32.h" |
#include "processor/symbolic_constants_win.h" |
@@ -6406,7 +6406,7 @@ std::string NTStatusToString(uint32_t ntstatus) { |
break; |
default: { |
char reason_string[11]; |
- std::snprintf(reason_string, sizeof(reason_string), "0x%08x", ntstatus); |
+ snprintf(reason_string, sizeof(reason_string), "0x%08x", ntstatus); |
reason = reason_string; |
break; |
} |