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_environment.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_environment.c') diff --git a/tests/test_environment.c b/tests/test_environment.c index 9a503c0..72a938d 100644 --- a/tests/test_environment.c +++ b/tests/test_environment.c @@ -56,7 +56,7 @@ void test_runtime() { STASIS_ASSERT(strcmp(global_custom_value, custom_value) == 0, "local and global CUSTOM_KEY variable are supposed to be identical"); guard_free(custom_value); - char output_truth[BUFSIZ] = {0}; + char output_truth[STASIS_BUFSIZ] = {0}; char *your_path = runtime_get(env, "PATH"); snprintf(output_truth, sizeof(output_truth), "Your PATH is '%s'.", your_path); guard_free(your_path); -- cgit