| Index: webrtc/common_audio/fir_filter.cc
|
| diff --git a/webrtc/common_audio/fir_filter.cc b/webrtc/common_audio/fir_filter.cc
|
| index d0a2d2f3ee68d5f60b1ef85727aa52d3ca21d35e..5f5e210ce19b64491c75140b9f6c6a0d62428f11 100644
|
| --- a/webrtc/common_audio/fir_filter.cc
|
| +++ b/webrtc/common_audio/fir_filter.cc
|
| @@ -40,10 +40,10 @@ FIRFilter* FIRFilter::Create(const float* coefficients,
|
| size_t max_input_length) {
|
| if (!coefficients || coefficients_length <= 0 || max_input_length <= 0) {
|
| RTC_NOTREACHED();
|
| - return NULL;
|
| + return nullptr;
|
| }
|
|
|
| - FIRFilter* filter = NULL;
|
| + FIRFilter* filter = nullptr;
|
| // If we know the minimum architecture at compile time, avoid CPU detection.
|
| #if defined(WEBRTC_ARCH_X86_FAMILY)
|
| #if defined(__SSE2__)
|
|
|