summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-12 16:58:21 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-12 16:58:21 +0330
commit188fc08d3b3095a843c24207fe3a73999b2894fb (patch)
treee3639a118a8cdc57a496e8169e0d34207b8e3de9 /src/main.c
parent5c336962d3d0a885a870708076f154ee422fee12 (diff)
enhanced if with else
fix if scope bug
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 8a61324..4b7747b 100644
--- a/src/main.c
+++ b/src/main.c
@@ -111,7 +111,7 @@ int main(int argc, char *argv[]) {
return 1;
}
- const int ret = run(argv[1], false);
+ const int ret = run(argv[1], true);
fileDelete();
return ret;
}