From c8ae197e640e38ec1b4fc0ccab166504b4b8ec2d Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Sat, 17 Oct 2020 16:13:06 -0700 Subject: [PATCH] Removed "U" suffixes, they are not necessary. --- upb/upb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upb/upb.h b/upb/upb.h index 0d15d5db92..85205a5a76 100644 --- a/upb/upb.h +++ b/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); } }