diff options
author | Yang Tse <yangsita@gmail.com> | 2009-05-08 02:14:50 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-05-08 02:14:50 +0000 |
commit | c5c03ac5563961cbcbcb2a1cc3e8963d0c49e154 (patch) | |
tree | c013ab93163eb8640b52a0385b9d3a0c1706417b /tests/libtest/lib506.c | |
parent | 6ca321ca75c8f8ad6808bcfd786ad8e84c790aff (diff) |
Fixes for non-ASCII platforms by David McCreedy
Diffstat (limited to 'tests/libtest/lib506.c')
-rw-r--r-- | tests/libtest/lib506.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/lib506.c b/tests/libtest/lib506.c index 34c774e5d..823e05d3e 100644 --- a/tests/libtest/lib506.c +++ b/tests/libtest/lib506.c @@ -132,7 +132,7 @@ static void *fire(void *ptr) /* build request url */ static char *suburl(const char *base, int i) { - return curl_maprintf("%s000%c", base, 48+i); + return curl_maprintf("%s%.4d", base, i); } |