aboutsummaryrefslogtreecommitdiff
path: root/tests/torture.c
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2018-08-07 15:41:45 +0200
committerAndreas Schneider <asn@cryptomilk.org>2018-08-07 15:41:45 +0200
commit2839d48cb831b099631a705e9d598a658a8d1455 (patch)
tree8c162fca4ce6a421f4e107c581d20b1a14ee92f9 /tests/torture.c
parent5ea81166bf885d0fd5d4bb232fc22633f5aaf3c4 (diff)
downloadlibssh-2839d48cb831b099631a705e9d598a658a8d1455.tar.gz
libssh-2839d48cb831b099631a705e9d598a658a8d1455.tar.xz
libssh-2839d48cb831b099631a705e9d598a658a8d1455.zip
tests: Fix a typo in torture.c
Thanks Nikos for spotting it. Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'tests/torture.c')
-rw-r--r--tests/torture.c2
1 files changed, 1 insertions, 1 deletions
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) {