From c358bb42fd9d4121bd642bcd41a317e5ed7625be Mon Sep 17 00:00:00 2001 From: Josh Haberman Date: Fri, 25 Jan 2019 12:15:23 -0800 Subject: A few more Google fixes. --- upb/pb/decoder.int.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'upb') diff --git a/upb/pb/decoder.int.h b/upb/pb/decoder.int.h index 47eb3ed..42fd7f8 100644 --- a/upb/pb/decoder.int.h +++ b/upb/pb/decoder.int.h @@ -70,7 +70,7 @@ typedef enum { #define OP_MAX OP_HALT -UPB_INLINE opcode getop(uint32_t instr) { return instr & 0xff; } +UPB_INLINE opcode getop(uint32_t instr) { return (opcode)(instr & 0xff); } struct upb_pbcodecache { upb_arena *arena; -- cgit v1.2.3