Skip to content

Commit

Permalink
fix error occuring when get parameter in size_t: atoi -> strtoull
Browse files Browse the repository at this point in the history
  • Loading branch information
jaebeom-kim committed Jun 20, 2024
1 parent 4b9313e commit 74b8ff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/workflow/build.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ void setDefaults_build(LocalParameters & par){
par.splitNum = 4096;
par.maskProb = 0.9;
par.maskMode = 1;
par.bufferSize = 1'000'000'000;
par.bufferSize = 10'000'000'000;
par.accessionLevel = 0;
// Get current date
time_t now = time(0);
Expand Down

0 comments on commit 74b8ff7

Please sign in to comment.