aboutsummaryrefslogtreecommitdiff
path: root/lib/sendf.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-06-07 10:28:14 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-06-07 10:28:14 +0000
commitf0969c96929ad83429a256725da7334f1d2cd530 (patch)
treea96f35932e639de8602f7c1c45d755aebf8c8b4b /lib/sendf.c
parent18dd8154e26aac133001a7f4d9cc59b81700c4a8 (diff)
prevent compiler warning with picky compilers
Diffstat (limited to 'lib/sendf.c')
-rw-r--r--lib/sendf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sendf.c b/lib/sendf.c
index f6d2374af..a4fbb5182 100644
--- a/lib/sendf.c
+++ b/lib/sendf.c
@@ -469,7 +469,7 @@ int Curl_debug(struct SessionHandle *data, curl_infotype type,
int rc;
if(data->set.printhost && host) {
char buffer[160];
- char *t=NULL;
+ const char *t=NULL;
switch (type) {
case CURLINFO_HEADER_IN:
case CURLINFO_DATA_IN: