aboutsummaryrefslogtreecommitdiff
path: root/src/conda.c
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2023-11-20 00:29:06 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2023-11-20 00:29:06 -0500
commit9e8edf8918c9e79386b4b07f7bc6b2528cea98fb (patch)
tree2074c39d1349eb346cb1812c5296f521f8ec6450 /src/conda.c
parent49e929fa89d9ce348df5068845069392f69d8c86 (diff)
downloadstasis-9e8edf8918c9e79386b4b07f7bc6b2528cea98fb.tar.gz
Replaces BUFSIZ with OMC_BUFSIZ
Diffstat (limited to 'src/conda.c')
-rw-r--r--src/conda.c2
1 files changed, 1 insertions, 1 deletions
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) {