diff options
| author | Nakidai <nakidai@disroot.org> | 2024-11-24 19:25:04 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2024-11-24 19:25:04 +0300 |
| commit | 1926679c59c19cb80653328f4f412ff4d8c031c6 (patch) | |
| tree | d55f6489d1d366d7103aae7e6ddfd85721faae96 /src | |
| parent | 6a969267a42280cff5826da1749322056e6dad84 (diff) | |
| download | libhttpc-1926679c59c19cb80653328f4f412ff4d8c031c6.tar.gz libhttpc-1926679c59c19cb80653328f4f412ff4d8c031c6.zip | |
Fix typo
Diffstat (limited to 'src')
| -rw-r--r-- | src/response.c | 2 |
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); |