Skip to content

Commit

Permalink
#2 undo lld > llu
Browse files Browse the repository at this point in the history
  • Loading branch information
jwijffels committed Jan 23, 2024
1 parent f80c93e commit a5d899f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webrtc/rtc_base/checks.cc
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ bool ParseArg(va_list* args, const CheckArgType** fmt, std::string* s) {
AppendFormat(s, "%ld", va_arg(*args, long));
break;
case CheckArgType::kLongLong:
AppendFormat(s, "%llu", va_arg(*args, long long));
AppendFormat(s, "%lld", va_arg(*args, long long));
break;
case CheckArgType::kUInt:
AppendFormat(s, "%u", va_arg(*args, unsigned));
Expand Down

0 comments on commit a5d899f

Please sign in to comment.