Skip to content

Commit

Permalink
Fix log format
Browse files Browse the repository at this point in the history
  • Loading branch information
HelloThisIsFlo committed Sep 30, 2023
1 parent 2866e96 commit 8a2c2ed
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/src/combo.c
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,9 @@ static int filter_timed_out_candidates(int64_t timestamp) {
}
}

LOG_DBG("after filtering out timed out combo candidates: remaining_candidates=%d timestamp=%d",
remaining_candidates, timestamp);
LOG_DBG(
"after filtering out timed out combo candidates: remaining_candidates=%d timestamp=%lld",
remaining_candidates, timestamp);

return remaining_candidates;
}
Expand Down

0 comments on commit 8a2c2ed

Please sign in to comment.