Chromium Code Reviews| Index: webrtc/base/common.cc |
| diff --git a/webrtc/base/common.cc b/webrtc/base/common.cc |
| index c6f1b75312832a8fdf08a391ddd6306995148e02..07eb0b1c339d6db1f16ce0313326744e9afb45c1 100644 |
| --- a/webrtc/base/common.cc |
| +++ b/webrtc/base/common.cc |
| @@ -13,7 +13,7 @@ |
| #include <stdio.h> |
| #include <string.h> |
| -#if WEBRTC_WIN |
| +#ifdef WEBRTC_WIN |
| #define WIN32_LEAN_AND_MEAN |
| #include <windows.h> |
| #endif // WEBRTC_WIN |
| @@ -33,7 +33,7 @@ |
| namespace rtc { |
| void Break() { |
| -#if WEBRTC_WIN |
| +#ifdef WEBRTC_WIN |
| ::DebugBreak(); |
| #else // !WEBRTC_WIN |
| // On POSIX systems, SIGTRAP signals debuggers to break without killing the |