aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2026-04-28 16:47:58 -0400
committerGitHub <noreply@github.com>2026-04-28 16:47:58 -0400
commite412ae6ff1aa793799ccdbe893484273e71e909a (patch)
tree19b5d1fde08965ab778ebedc563594da0b61a5e6
parent10f13b36560c5112554c54d8958081b7aa518050 (diff)
parentf40d6b1075777af0ac8b24475b673f3c8981a5b8 (diff)
downloadstasis-e412ae6ff1aa793799ccdbe893484273e71e909a.tar.gz
Merge pull request #138 from jhunkeler/debug_log_type
Fix missing type in debug_log declaration
-rw-r--r--src/lib/core/conda.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/core/conda.c b/src/lib/core/conda.c
index 4557c5c..b5f0f77 100644
--- a/src/lib/core/conda.c
+++ b/src/lib/core/conda.c
@@ -210,7 +210,7 @@ int pkg_index_provides(int mode, const char *index, const char *spec, const char
#if defined(DEBUG)
const int debug_log = 1;
#else
- const debug_log = 0;
+ const int debug_log = 0;
#endif
// Print errors only when shell() itself throws one