diff options
author | Yang Tse <yangsita@gmail.com> | 2008-05-06 04:37:06 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-05-06 04:37:06 +0000 |
commit | 082237e2b5c3b530c1597036eb6e337a1a815da7 (patch) | |
tree | 0aff6d1291323e82f058c95ffa9d2c693fa1fed8 /lib | |
parent | dd08a7a4f6cd2e6b64131e63ad21da8f4a8c5f7f (diff) | |
download | curl-082237e2b5c3b530c1597036eb6e337a1a815da7.tar.gz |
fix compiler warning: enumerated type mixed with another type
Diffstat (limited to 'lib')
-rw-r--r-- | lib/transfer.c | 2 |
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; |