about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNakidai <nakidai@disroot.org>2024-11-24 19:25:04 +0300
committerNakidai <nakidai@disroot.org>2024-11-24 19:25:04 +0300
commit1926679c59c19cb80653328f4f412ff4d8c031c6 (patch)
treed55f6489d1d366d7103aae7e6ddfd85721faae96 /src
parent6a969267a42280cff5826da1749322056e6dad84 (diff)
downloadlibhttpc-1926679c59c19cb80653328f4f412ff4d8c031c6.tar.gz
libhttpc-1926679c59c19cb80653328f4f412ff4d8c031c6.zip
Fix typo
Diffstat (limited to 'src')
-rw-r--r--src/response.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/response.c b/src/response.c
index 96e27cf..154cd8d 100644
--- a/src/response.c
+++ b/src/response.c
@@ -20,7 +20,7 @@ char *LibHTTPC_dumpResponse(struct LibHTTPC_Response *response, char *buf, size_
 
 #define append(X) strncat(buf, (X), buf_len - strlen(buf))
     append(response->version);
-    append("");
+    append(" ");
     append(status);
     append(" ");
     append(response->phrase);