| Index: webrtc/base/filerotatingstream.cc
|
| diff --git a/webrtc/base/filerotatingstream.cc b/webrtc/base/filerotatingstream.cc
|
| index 080999476b0a0ac1c8f1aa6b765f21c5160ddde5..d1434de9dd5bd3f73adc7ce1e3b561ae856c8796 100644
|
| --- a/webrtc/base/filerotatingstream.cc
|
| +++ b/webrtc/base/filerotatingstream.cc
|
| @@ -37,8 +37,8 @@ FileRotatingStream::FileRotatingStream(const std::string& dir_path,
|
| max_file_size,
|
| num_files,
|
| kWrite) {
|
| - RTC_DCHECK_GT(max_file_size, 0u);
|
| - RTC_DCHECK_GT(num_files, 1u);
|
| + RTC_DCHECK_GT(max_file_size, 0);
|
| + RTC_DCHECK_GT(num_files, 1);
|
| }
|
|
|
| FileRotatingStream::FileRotatingStream(const std::string& dir_path,
|
| @@ -248,7 +248,7 @@ bool FileRotatingStream::OpenCurrentFile() {
|
| case kWrite:
|
| mode = "w+";
|
| // We should always we writing to the zero-th file.
|
| - RTC_DCHECK_EQ(current_file_index_, 0u);
|
| + RTC_DCHECK_EQ(current_file_index_, 0);
|
| break;
|
| case kRead:
|
| mode = "r";
|
| @@ -360,7 +360,7 @@ CallSessionFileRotatingStream::CallSessionFileRotatingStream(
|
| GetNumRotatingLogFiles(max_total_log_size) + 1),
|
| max_total_log_size_(max_total_log_size),
|
| num_rotations_(0) {
|
| - RTC_DCHECK_GE(max_total_log_size, 4u);
|
| + RTC_DCHECK_GE(max_total_log_size, 4);
|
| }
|
|
|
| const char* CallSessionFileRotatingStream::kLogPrefix = "webrtc_log";
|
|
|