From 9e8edf8918c9e79386b4b07f7bc6b2528cea98fb Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 20 Nov 2023 00:29:06 -0500 Subject: Replaces BUFSIZ with OMC_BUFSIZ --- src/conda.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/conda.c') diff --git a/src/conda.c b/src/conda.c index f18d2d1..79e4949 100644 --- a/src/conda.c +++ b/src/conda.c @@ -113,7 +113,7 @@ int conda_activate(const char *root, const char *env_name) { } int i = 0; while (!feof(fp)) { - char buf[BUFSIZ] = {0}; + char buf[OMC_BUFSIZ] = {0}; int ch = 0; int z = 0; while (z < sizeof(buf) && (ch = (int) fgetc(fp)) != 0) { -- cgit