aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-11-26 17:13:30 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-11-26 17:13:30 +0000
commit0210b3c8935e6faf5c929e7b9f360f42bc1c3995 (patch)
treebbedc2401320134a5dd18146b5906c244aeca6cd /src
parent7df5677b4677eabbb8d1477171f3c9bf0028f08d (diff)
removed extra space from trace output 'Send data'
Diffstat (limited to 'src')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index fb43e8001..255da592e 100644
--- a/src/main.c
+++ b/src/main.c
@@ -2186,7 +2186,7 @@ int my_trace(CURL *handle, curl_infotype type,
text = "=> Send header";
break;
case CURLINFO_DATA_OUT:
- text = "=> Send data ";
+ text = "=> Send data";
break;
case CURLINFO_HEADER_IN:
text = "<= Recv header";