From 2839d48cb831b099631a705e9d598a658a8d1455 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Tue, 7 Aug 2018 15:41:45 +0200 Subject: [PATCH] tests: Fix a typo in torture.c Thanks Nikos for spotting it. Signed-off-by: Andreas Schneider --- tests/torture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/torture.c b/tests/torture.c index 141cfc15..87b6259f 100644 --- a/tests/torture.c +++ b/tests/torture.c @@ -221,7 +221,7 @@ int torture_terminate_process(const char *pidfile) kill(pid, SIGTERM); /* 10 ms */ - usleep(10 * 000); + usleep(10 * 1000); rc = kill(pid, 0); if (rc != 0) {