From a9f3ed63573693836d7bab50403c23fb5bf75507 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 7 May 2026 14:58:58 -0400 Subject: Replace BUFSIZ with STASIS_BUFSIZ --- tests/test_download.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_download.c') diff --git a/tests/test_download.c b/tests/test_download.c index 31e9792..6ace119 100644 --- a/tests/test_download.c +++ b/tests/test_download.c @@ -21,7 +21,7 @@ void test_download() { for (size_t i = 0; i < sizeof(tc) / sizeof(*tc); i++) { const char *filename = "output.txt"; - char errmsg[BUFSIZ] = {0}; + char errmsg[STASIS_BUFSIZ] = {0}; char *errmsg_p = errmsg; long http_code = download((char *) tc[i].url, filename, &errmsg_p); if (tc[i].errmsg) { -- cgit