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_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_utils.c') diff --git a/tests/test_utils.c b/tests/test_utils.c index fd398e2..119dea3 100644 --- a/tests/test_utils.c +++ b/tests/test_utils.c @@ -105,7 +105,7 @@ void test_xml_pretty_print_in_place() { } fp = fopen(filename, "r"); - char buf[BUFSIZ] = {0}; + char buf[STASIS_BUFSIZ] = {0}; if (fread(buf, sizeof(*buf), sizeof(buf) - 1, fp) < 1) { STASIS_ASSERT(false, "failed to consume formatted xml file contents"); } -- cgit