summaryrefslogtreecommitdiffstats
path: root/o3d/breakpad
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-10 23:01:20 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-10 23:01:20 +0000
commit42ff47b781b72643d2c5a2c4fe2159b4c3e20347 (patch)
tree091ea301fdd6bdb3ae280f015571bfb4a0da11b6 /o3d/breakpad
parent0fcfb2a1252c8665c8078aa1ccd94b5153a92f18 (diff)
downloadchromium_src-42ff47b781b72643d2c5a2c4fe2159b4c3e20347.zip
chromium_src-42ff47b781b72643d2c5a2c4fe2159b4c3e20347.tar.gz
chromium_src-42ff47b781b72643d2c5a2c4fe2159b4c3e20347.tar.bz2
Change #ifdef _DEBUG test to #ifndef NDEBUG test.
BUG=None TEST=trybots Review URL: http://codereview.chromium.org/5991010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70956 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/breakpad')
-rw-r--r--o3d/breakpad/linux/breakpad.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/o3d/breakpad/linux/breakpad.cc b/o3d/breakpad/linux/breakpad.cc
index 4ef9bc3..6fec736 100644
--- a/o3d/breakpad/linux/breakpad.cc
+++ b/o3d/breakpad/linux/breakpad.cc
@@ -48,7 +48,7 @@ static const std::string kBreakpadProduct = "Google_O3D_Plugin_Linux";
static const std::string kBreakpadVersion = "unknown";
static const std::string kBreakpadGUID = "unknown";
static const std::string kBreakpadEmail = "unknown";
-#ifdef _DEBUG
+#ifndef NDEBUG
static const std::string kBreakpadServer =
"http://clients2.google.com/cr/staging_report";
#else