| Index: third_party/crashpad/crashpad/util/mac/xattr.cc
|
| diff --git a/third_party/crashpad/crashpad/util/mac/xattr.cc b/third_party/crashpad/crashpad/util/mac/xattr.cc
|
| index 138de3e4b045eae48e424cbad0560e7a66103a50..75d7938d5b508b89c261e36e39ddf8f2c701c0ab 100644
|
| --- a/third_party/crashpad/crashpad/util/mac/xattr.cc
|
| +++ b/third_party/crashpad/crashpad/util/mac/xattr.cc
|
| @@ -117,8 +117,8 @@ bool WriteXattrInt(const base::FilePath& file,
|
| XattrStatus ReadXattrTimeT(const base::FilePath& file,
|
| const base::StringPiece& name,
|
| time_t* value) {
|
| - // time_t on OS X is defined as a long, but it will be read into an
|
| - // int64_t here, since there is no string conversion method for long.
|
| + // time_t on macOS is defined as a long, but it will be read into an int64_t
|
| + // here, since there is no string conversion method for long.
|
| std::string tmp;
|
| XattrStatus status;
|
| if ((status = ReadXattr(file, name, &tmp)) != XattrStatus::kOK)
|
|
|