Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
eseiler authored Oct 10, 2023
1 parent a862232 commit 1352c8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/display_layout/process_file.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ void process_file(std::string const & filename,
{
current_kmers.push_back(hash);
sketch.add(hash);
local_ub_sketch.add(hash_value);
local_ub_sketch.add(hash);
}
}
else
{
while (infile.read(hash_data, hash_bytes))
{
sketch.add(hash);
local_ub_sketch.add(hash_value);
local_ub_sketch.add(hash);
}
}
}
Expand Down

0 comments on commit 1352c8e

Please sign in to comment.