From 082237e2b5c3b530c1597036eb6e337a1a815da7 Mon Sep 17 00:00:00 2001
From: Yang Tse <yangsita@gmail.com>
Date: Tue, 6 May 2008 04:37:06 +0000
Subject: [PATCH] fix compiler warning: enumerated type mixed with another type

---
 lib/transfer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/transfer.c b/lib/transfer.c
index b17929c0a8..4ad56322a1 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;
 
-- 
GitLab