From cc2317ea4863f1783566fc505e4a3cfe57d29033 Mon Sep 17 00:00:00 2001 From: Pavel Tikhomirov Date: Mon, 2 Aug 2021 12:00:49 +0300 Subject: [PATCH] zdtm: fix indentation in Makefile wait_stop target Signed-off-by: Pavel Tikhomirov --- test/zdtm/static/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/zdtm/static/Makefile b/test/zdtm/static/Makefile index cb919c016..01624705e 100644 --- a/test/zdtm/static/Makefile +++ b/test/zdtm/static/Makefile @@ -495,8 +495,8 @@ WAIT_TIME=240 [ $$i -lt $(WAIT_TIME) ] wait_stop: - i=0; \ - while [ $$i -lt $(WAIT_TIME) ] ; do \ + i=0; \ + while [ $$i -lt $(WAIT_TIME) ] ; do \ kill -0 `awk '{print}' *.pid 2>/dev/null` 2>/dev/null || break; \ sleep 1; \ i=`expr $$i + 1`; \