projects
/
platform
/
upstream
/
curl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
09777a4
)
fix compiler warning: enumerated type mixed with another type
author
Yang Tse
<yangsita@gmail.com>
Thu, 17 Apr 2008 11:59:46 +0000
(11:59 +0000)
committer
Yang Tse
<yangsita@gmail.com>
Thu, 17 Apr 2008 11:59:46 +0000
(11:59 +0000)
tests/libtest/lib555.c
patch
|
blob
|
history
diff --git
a/tests/libtest/lib555.c
b/tests/libtest/lib555.c
index
bfc29fc
..
ed12c5a
100644
(file)
--- a/
tests/libtest/lib555.c
+++ b/
tests/libtest/lib555.c
@@
-60,7
+60,7
@@
static curlioerr ioctlcallback(CURL *handle,
int test(char *URL)
{
-
CURLcode
res;
+
int
res;
CURL *curl;
int counter=0;
CURLM *m;
@@
-142,6
+142,6
@@
int test(char *URL)
curl_global_cleanup();
- return
(int)
res;
+ return res;
}