Removed "U" suffixes, they are not necessary.

pull/13171/head
Joshua Haberman 4 years ago
parent bc1e0b314f
commit c8ae197e64
  1. 2
      upb/upb.h

@ -301,7 +301,7 @@ UPB_INLINE uint32_t _upb_be_swap32(uint32_t val) {
return val;
} else {
return ((val & 0xff) << 24) | ((val & 0xff00) << 8) |
((val & 0xff0000ULL) >> 8) | ((val & 0xff000000ULL) >> 24);
((val & 0xff0000) >> 8) | ((val & 0xff000000) >> 24);
}
}

Loading…
Cancel
Save