aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest/lib1905.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-03-05 13:51:30 +0100
committerDaniel Stenberg <daniel@haxx.se>2019-03-05 14:38:25 +0100
commita4cc978906ef14a5ae5a251de89fce784304898b (patch)
tree80ea5b18467e5d8b1e3f33a91875930fc032e4c2 /tests/libtest/lib1905.c
parent1ed9e747029b963b641d5cd0389e087c03ee3cb5 (diff)
tests: fix multiple may be used uninitialized warnings
Diffstat (limited to 'tests/libtest/lib1905.c')
-rw-r--r--tests/libtest/lib1905.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/lib1905.c b/tests/libtest/lib1905.c
index 1d1de27e7..b09c4f526 100644
--- a/tests/libtest/lib1905.c
+++ b/tests/libtest/lib1905.c
@@ -55,7 +55,7 @@ int test(char *URL)
unfinished = 1;
while(unfinished) {
- int MAX;
+ int MAX = 0;
long max_tout;
fd_set R, W, E;
struct timeval timeout;