aboutsummaryrefslogtreecommitdiff
path: root/lib/transfer.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-05-06 04:37:06 +0000
committerYang Tse <yangsita@gmail.com>2008-05-06 04:37:06 +0000
commit082237e2b5c3b530c1597036eb6e337a1a815da7 (patch)
tree0aff6d1291323e82f058c95ffa9d2c693fa1fed8 /lib/transfer.c
parentdd08a7a4f6cd2e6b64131e63ad21da8f4a8c5f7f (diff)
fix compiler warning: enumerated type mixed with another type
Diffstat (limited to 'lib/transfer.c')
-rw-r--r--lib/transfer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/transfer.c b/lib/transfer.c
index b17929c0a..4ad56322a 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -2356,7 +2356,7 @@ CURLcode Curl_perform(struct SessionHandle *data)
CURLcode res2;
struct connectdata *conn=NULL;
char *newurl = NULL; /* possibly a new URL to follow to! */
- int follow = FOLLOW_NONE;
+ followtype follow = FOLLOW_NONE;
data->state.used_interface = Curl_if_easy;