Index: webrtc/base/flags.cc |
diff --git a/webrtc/base/flags.cc b/webrtc/base/flags.cc |
index a138b8fb9b6812c9e7d680d90de58de19504da1f..4fcd4acc11bf8f68d53c16150ee82e8426240ec4 100644 |
--- a/webrtc/base/flags.cc |
+++ b/webrtc/base/flags.cc |
@@ -258,7 +258,7 @@ int FlagList::SetFlagsFromCommandLine(int* argc, const char** argv, |
void FlagList::Register(Flag* flag) { |
RTC_DCHECK(flag); |
- RTC_DCHECK_GT(strlen(flag->name()), 0u); |
+ RTC_DCHECK_GT(strlen(flag->name()), 0); |
// NOTE: Don't call Lookup() within Register because it accesses the name_ |
// of other flags in list_, and if the flags are coming from two different |
// compilation units, the initialization order between them is undefined, and |