FS-10257: [mod_sofia] libsofia-sip-ua/msg no longer builds on Arch Linux due to -Werror=parentheses

Conflicts:
	libs/sofia-sip/.update
This commit is contained in:
Brian West 2017-06-05 17:44:42 -05:00 committed by Mike Jerris
parent 4f9dab90c2
commit 595a5fc15a
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
Thu Jun 1 14:43:20 EDT 2017
Tue Jun 6 09:36:46 CDT 2017

View File

@ -2017,7 +2017,7 @@ msg_header_t **serialize_one(msg_t *msg, msg_header_t *h, msg_header_t **prev)
for (last = h; last->sh_succ; last = last->sh_succ) {
/* Ensure that chain is connected */
assert(last->sh_next == last->sh_succ);
assert(last->sh_succ->sh_prev = &last->sh_succ);
assert(last->sh_succ->sh_prev == &last->sh_succ);
}
prev = &last->sh_succ;
}