Chromium Code Reviews| Index: base/sys_info_linux.cc |
| diff --git a/base/sys_info_linux.cc b/base/sys_info_linux.cc |
| index 2e679ed39f3a52b7edc2b69d8ec5059575f9ed32..c698f911db516fdb3a178ecb9e1c15ac18e0ce35 100644 |
| --- a/base/sys_info_linux.cc |
| +++ b/base/sys_info_linux.cc |
| @@ -43,7 +43,7 @@ size_t MaxSharedMemorySize() { |
| if (limit > std::numeric_limits<size_t>::max()) { |
| limit = 0; |
| } |
| - DCHECK(limit > 0); |
| + DCHECK_GT(limit, 0u); |
| return static_cast<size_t>(limit); |
| } |