diff --git a/lib/includes/nghttp2/nghttp2.h b/lib/includes/nghttp2/nghttp2.h index 2c52000a..d1bf4634 100644 --- a/lib/includes/nghttp2/nghttp2.h +++ b/lib/includes/nghttp2/nghttp2.h @@ -362,7 +362,7 @@ typedef enum { /** * Indicates that this name/value pair must not be indexed. */ - NGHTTP2_NV_FLAG_NO_INDEX = 0x1 + NGHTTP2_NV_FLAG_NO_INDEX = 0x01 } nghttp2_nv_flag; /** @@ -2921,11 +2921,11 @@ typedef enum { /** * Indicates all headers were inflated. */ - NGHTTP2_HD_INFLATE_FINAL = 1, + NGHTTP2_HD_INFLATE_FINAL = 0x01, /** * Indicates a header was emitted. */ - NGHTTP2_HD_INFLATE_EMIT = (1 << 1) + NGHTTP2_HD_INFLATE_EMIT = 0x02 } nghttp2_hd_inflate_flag; /**