Auto-generate files after cl/621284070

pull/16390/head
Protobuf Team Bot 12 months ago
parent f520cf3dbf
commit b6fbc98971
  1. 3
      php/ext/google/protobuf/php-upb.c
  2. 3
      ruby/ext/google/protobuf_c/ruby-upb.c

@ -7716,8 +7716,7 @@ static _upb_DecodeLongVarintReturn _upb_Decoder_DecodeLongVarint(
const char* ptr, uint64_t val) {
_upb_DecodeLongVarintReturn ret = {NULL, 0};
uint64_t byte;
int i;
for (i = 1; i < 10; i++) {
for (int i = 1; i < 10; i++) {
byte = (uint8_t)ptr[i];
val += (byte - 1) << (i * 7);
if (!(byte & 0x80)) {

@ -7209,8 +7209,7 @@ static _upb_DecodeLongVarintReturn _upb_Decoder_DecodeLongVarint(
const char* ptr, uint64_t val) {
_upb_DecodeLongVarintReturn ret = {NULL, 0};
uint64_t byte;
int i;
for (i = 1; i < 10; i++) {
for (int i = 1; i < 10; i++) {
byte = (uint8_t)ptr[i];
val += (byte - 1) << (i * 7);
if (!(byte & 0x80)) {

Loading…
Cancel
Save