diff options
author | Yang Tse <yangsita@gmail.com> | 2009-04-13 07:18:39 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-04-13 07:18:39 +0000 |
commit | c621546bd608d5f836d165c2a33ff3d37e2e21e5 (patch) | |
tree | 0b9766ecc282037a877a7d0ff6a270a071772263 /tests/libtest | |
parent | aa330b8240c819da037c83e2df2088cb420c8191 (diff) |
fix compiler warning: implicit conversion shortens 64-bit value into a 32-bit value
Diffstat (limited to 'tests/libtest')
-rw-r--r-- | tests/libtest/lib556.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/lib556.c b/tests/libtest/lib556.c index 579321ed9..cb57f763b 100644 --- a/tests/libtest/lib556.c +++ b/tests/libtest/lib556.c @@ -55,7 +55,7 @@ int test(char *URL) if(!res) { /* we assume that sending always work */ - int total=0; + size_t total=0; do { /* busy-read like crazy */ |