From 6208ac3589be1bba6bec10656ae876bac776d6f5 Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Thu, 14 Oct 2010 00:56:39 -0400 Subject: [PATCH] Rx: function return type on separate line Change-Id: I99546f2f7ebea0dd796d6c017acdeaf40c3fc711 Reviewed-on: http://gerrit.openafs.org/2978 Tested-by: BuildBot Reviewed-by: Rod Widdowson Reviewed-by: Jeffrey Altman Tested-by: Jeffrey Altman --- src/rx/rx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rx/rx.c b/src/rx/rx.c index 8a4bd33d4..abbc8e4b5 100644 --- a/src/rx/rx.c +++ b/src/rx/rx.c @@ -1187,7 +1187,8 @@ rx_GetConnection(struct rx_connection *conn) #ifdef AFS_GLOBAL_RXLOCK_KERNEL /* Wait for the transmit queue to no longer be busy. * requires the call->lock to be held */ -void rxi_WaitforTQBusy(struct rx_call *call) { +void +rxi_WaitforTQBusy(struct rx_call *call) { while (!call->error && (call->flags & RX_CALL_TQ_BUSY)) { call->flags |= RX_CALL_TQ_WAIT; call->tqWaiters++; -- 2.39.5