mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-03 17:30:37 +00:00
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:
parent
4f9dab90c2
commit
595a5fc15a
@ -1 +1 @@
|
||||
Thu Jun 1 14:43:20 EDT 2017
|
||||
Tue Jun 6 09:36:46 CDT 2017
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user