torture: remove spurious semicolon
authorUri Simchoni <uri@samba.org>
Sun, 19 Nov 2017 05:20:57 +0000 (05:20 +0000)
committerAndrew Bartlett <abartlet@samba.org>
Wed, 22 Nov 2017 09:20:20 +0000 (10:20 +0100)
Signed-off-by: Uri Simchoni <uri@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
source4/torture/rpc/spoolss_notify.c

index dd9cd31e8c09af2ef00fb27f42c8b921f0b53de5..718ae703bc92a423650a8b3c15143c4fb7b6f333 100644 (file)
@@ -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;
 }