wfqueue: fix type-incorrect assignment
authorPaolo Bonzini <pbonzini@redhat.com>
Tue, 9 Aug 2011 12:37:14 +0000 (08:37 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 9 Aug 2011 12:37:14 +0000 (08:37 -0400)
commit75635e2ac36765b49698a32d91767220917de807
tree244c26d4b0fe9c06fcce42e0e5d439694be85a88
parentbc727dc3413af8a5a53167df248a51c6ee2f5cb7
wfqueue: fix type-incorrect assignment

The "old_tail = q->tail, q->tail = node" assignment in wfqueue
is not type safe; q->tail is a pointer to pointer to node and the
correct value to assign is &node->next.  While the arithmetic is
the same, it is better to be tidy.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
urcu/static/wfqueue.h
This page took 0.025967 seconds and 4 git commands to generate.