From: Uri Simchoni Date: Sun, 19 Nov 2017 05:20:57 +0000 (+0000) Subject: torture: remove spurious semicolon X-Git-Tag: talloc-2.1.11~418 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5aa8af0c4ad7c4fb7aff001e3bd96cdf28471005;p=thirdparty%2Fsamba.git torture: remove spurious semicolon Signed-off-by: Uri Simchoni Reviewed-by: Andrew Bartlett --- diff --git a/source4/torture/rpc/spoolss_notify.c b/source4/torture/rpc/spoolss_notify.c index dd9cd31e8c0..718ae703bc9 100644 --- a/source4/torture/rpc/spoolss_notify.c +++ b/source4/torture/rpc/spoolss_notify.c @@ -500,7 +500,8 @@ static bool test_start_dcerpc_server(struct torture_context *tctx, static struct received_packet *last_packet(struct received_packet *p) { struct received_packet *tmp; - for (tmp = p; tmp->next; tmp = tmp->next) ;; + for (tmp = p; tmp->next; tmp = tmp->next) { + } return tmp; }