Skip to content

Commit

Permalink
made overwrite false by default
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksArt000 committed Oct 31, 2023
1 parent 4b84c61 commit 0b961d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/globals.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
bool TESTING = false;

Check warning on line 13 in src/globals.c

View workflow job for this annotation

GitHub Actions / c-linter

/src/globals.c:13:6 [cppcoreguidelines-avoid-non-const-global-variables]

variable 'TESTING' is non-const and globally accessible, consider making it const

// Flag for overwriting files
bool OVERWRITE = true;
bool OVERWRITE = false;

Check warning on line 16 in src/globals.c

View workflow job for this annotation

GitHub Actions / c-linter

/src/globals.c:16:6 [cppcoreguidelines-avoid-non-const-global-variables]

variable 'OVERWRITE' is non-const and globally accessible, consider making it const

// Flag for quiet mode (no verbose output)
bool QUIET = true;

Check warning on line 19 in src/globals.c

View workflow job for this annotation

GitHub Actions / c-linter

/src/globals.c:19:6 [cppcoreguidelines-avoid-non-const-global-variables]

variable 'QUIET' is non-const and globally accessible, consider making it const
Expand Down

0 comments on commit 0b961d2

Please sign in to comment.