This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cluster Project".
The branch, master has been updated
via b8920a3ce7c3af2f6d8ff8eed4a739f4b7cb81b6 (commit)
from d7387dedf8cf77f3a4156eb5a5264cca15e4e5bd (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
[CMAN] Don't declare a variable in the middle of a block
Later gccs seem to allow this behaviour (and leaving it like
that was a mistake on my part) but I've moved the declaration
of 'qm' back to the start of the block for normality's sake.
/* Have we exceeded the allowed number of queued messages ? */
if (con->num_write_msgs > max_outstanding_messages) {
@@ -94,7 +95,7 @@ static int send_reply_message(struct connection *con, struct sock_header *msg)
}