| Index: third_party/crashpad/crashpad/util/mac/mac_util.cc
|
| diff --git a/third_party/crashpad/crashpad/util/mac/mac_util.cc b/third_party/crashpad/crashpad/util/mac/mac_util.cc
|
| index a792e51197464a30574e4dbea5d79fc91b0fbc24..7c51cc2e6d8cef05e7a83396e15b481cda4d35eb 100644
|
| --- a/third_party/crashpad/crashpad/util/mac/mac_util.cc
|
| +++ b/third_party/crashpad/crashpad/util/mac/mac_util.cc
|
| @@ -181,9 +181,8 @@ std::string IORegistryEntryDataPropertyAsString(io_registry_entry_t entry,
|
| namespace crashpad {
|
|
|
| int MacOSXMinorVersion() {
|
| - // The Darwin major version is always 4 greater than the Mac OS X minor
|
| - // version for Darwin versions beginning with 6, corresponding to Mac OS X
|
| - // 10.2.
|
| + // The Darwin major version is always 4 greater than the macOS minor version
|
| + // for Darwin versions beginning with 6, corresponding to Mac OS X 10.2.
|
| static int mac_os_x_minor_version = DarwinMajorVersion() - 4;
|
| DCHECK(mac_os_x_minor_version >= 2);
|
| return mac_os_x_minor_version;
|
|
|