| Index: base/files/dir_reader_linux.h
|
| diff --git a/base/files/dir_reader_linux.h b/base/files/dir_reader_linux.h
|
| index abf259530b356175eb9a85bf24e8bf65593024ed..83918e8774a4acc9b74adfdc38b968ced632d6b0 100644
|
| --- a/base/files/dir_reader_linux.h
|
| +++ b/base/files/dir_reader_linux.h
|
| @@ -70,7 +70,7 @@ class DirReaderLinux {
|
|
|
| const char* name() const {
|
| if (!size_)
|
| - return NULL;
|
| + return nullptr;
|
|
|
| const linux_dirent* dirent =
|
| reinterpret_cast<const linux_dirent*>(&buf_[offset_]);
|
| @@ -88,7 +88,8 @@ class DirReaderLinux {
|
| private:
|
| const int fd_;
|
| unsigned char buf_[512];
|
| - size_t offset_, size_;
|
| + size_t offset_;
|
| + size_t size_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(DirReaderLinux);
|
| };
|
|
|