| Index: sandbox/linux/services/yama_unittests.cc
 | 
| diff --git a/sandbox/linux/services/yama_unittests.cc b/sandbox/linux/services/yama_unittests.cc
 | 
| index a4100a6c37d346d0ca5af6e230444f3bc44cb596..204cfd6a4448c0d9955c924f08a1a6d3914f2193 100644
 | 
| --- a/sandbox/linux/services/yama_unittests.cc
 | 
| +++ b/sandbox/linux/services/yama_unittests.cc
 | 
| @@ -30,7 +30,7 @@ bool HasLinux32Bug() {
 | 
|    bool is_kernel_64bit =
 | 
|        base::SysInfo::OperatingSystemArchitecture() == "x86_64";
 | 
|    bool is_linux = base::SysInfo::OperatingSystemName() == "Linux";
 | 
| -  bool is_3_dot_2 = StartsWithASCII(
 | 
| +  bool is_3_dot_2 = base::StartsWithASCII(
 | 
|        base::SysInfo::OperatingSystemVersion(), "3.2", /*case_sensitive=*/false);
 | 
|    if (is_kernel_64bit && is_linux && is_3_dot_2)
 | 
|      return true;
 | 
| 
 |