Fix a small typo

This commit is contained in:
Jerome Charaoui 2019-01-22 22:15:17 -05:00 committed by Fufu Fang
parent 92852accda
commit 08c30b84e6
1 changed files with 1 additions and 1 deletions

2
link.c
View File

@ -245,7 +245,7 @@ LinkTable *LinkTable_new(const char *url)
long http_resp;
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &http_resp);
if (http_resp != HTTP_OK) {
fprintf(stderr, "link.c: LinkTable_new() cannot retrive the base URL, \
fprintf(stderr, "link.c: LinkTable_new() cannot retrieve the base URL, \
URL: %s, HTTP %ld\n", url, http_resp);
LinkTable_free(linktbl);