Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nshaheed committed Feb 14, 2025
1 parent 7119921 commit f93c527
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion chump-cli/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ struct ChumpArgParser {
int main(int argc, const char **argv) {
#ifdef _WIN32
// Windows cmd lines (powershell and cmd) need to be set up to handle utf8
// Set console code page to UTF-8 so console known how to interpret string data
// Set console code page to UTF-8 so console known how to interpret string
// data
SetConsoleOutputCP(CP_UTF8);

// Enable buffering to prevent VS from chopping up UTF-8 byte sequences
Expand Down
4 changes: 2 additions & 2 deletions chumpinate/Chumpinate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1155,8 +1155,8 @@ class PackageVersionChumpinate {
int compression_level = MZ_COMPRESS_METHOD_STORE;
#else
int compression_level = MZ_COMPRESS_METHOD_STORE;
// we are not doing any compression right now for consistency with builds
// int compression_level = MZ_COMPRESS_LEVEL_DEFAULT;
// we are not doing any compression right now for consistency with
// builds int compression_level = MZ_COMPRESS_LEVEL_DEFAULT;
#endif

int zip_status =
Expand Down

0 comments on commit f93c527

Please sign in to comment.