Add parentheses around macro parameters

This commit is contained in:
Tatsuhiro Tsujikawa 2015-02-22 17:43:14 +09:00
parent 6051ff63e0
commit 4430b06c71
1 changed files with 2 additions and 2 deletions

View File

@ -37,8 +37,8 @@
#define MAKE_STATIC_ENT(I, N, V, NH, VH) \
{ \
{ \
{ (uint8_t *) N, (uint8_t *)V, sizeof(N) - 1, sizeof(V) - 1, 0 } \
, NH, VH, 1, NGHTTP2_HD_FLAG_NONE \
{ (uint8_t *)(N), (uint8_t *)(V), sizeof((N)) - 1, sizeof((V)) - 1, 0 } \
, (NH), (VH), 1, NGHTTP2_HD_FLAG_NONE \
} \
, I \
}