From 08c30b84e6f5ace0de649ed6e428abe3169580d2 Mon Sep 17 00:00:00 2001 From: Jerome Charaoui Date: Tue, 22 Jan 2019 22:15:17 -0500 Subject: [PATCH] Fix a small typo --- link.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/link.c b/link.c index b3c83ec..f009e59 100644 --- a/link.c +++ b/link.c @@ -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);