aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-01-11 20:31:53 +0000
committerted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-01-11 20:31:53 +0000
commit78aaf6a6659436ea535b494d243dec064b18c07f (patch)
tree8b8a01a763393d76c4b57b5765311fdf77cbe57c
parentMake some parts of the processor compile on Win32/MSVC (diff)
downloadbreakpad-78aaf6a6659436ea535b494d243dec064b18c07f.tar.xz
Fix review comment that I missed.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@752 4c0a9323-5329-0410-9bdc-e9ce6186880e
-rw-r--r--src/processor/logging.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/processor/logging.cc b/src/processor/logging.cc
index c58fb8dd..70f6958e 100644
--- a/src/processor/logging.cc
+++ b/src/processor/logging.cc
@@ -42,12 +42,12 @@
#include "processor/logging.h"
#include "processor/pathname_stripper.h"
-namespace google_breakpad {
-
#ifdef _WIN32
#define snprintf _snprintf
#endif
+namespace google_breakpad {
+
LogStream::LogStream(std::ostream &stream, Severity severity,
const char *file, int line)
: stream_(stream) {