diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-03-29 20:05:54 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-03-29 20:05:54 +0330 |
commit | 2316751587cf3998112f4e076b5b33080ce66124 (patch) | |
tree | 2d9a2388a9028ea0262b7766511dd7b5d918a843 /src/main.c | |
parent | e73184852285ffbb110a96ca7d7e1906029ba825 (diff) |
fix bug in conditions
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,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; } |