aboutsummaryrefslogtreecommitdiff
path: root/src/conda.c
diff options
context:
space:
mode:
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) {