Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compile error with newer clang #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/rvthtool/verify.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@ static bool progress_callback(const RvtH_Verify_Progress_State *state, void *use
case RVTH_VERIFY_ERROR_BAD_HASH:
printf("\n*** ERROR: Pt%u [%u,%u,%u%s]: H%u hash is invalid.\n",
state->pt_current, state->group_cur,
state->sector / 8, state->sector,
state->sector / 8U, state->sector,
s_kb, state->hash_level);
break;
case RVTH_VERIFY_ERROR_TABLE_COPY:
printf("\n*** ERROR: Pt%u [%u,%u,%u%s]: H%u table copy doesn't match base sector.\n",
state->pt_current, state->group_cur,
state->sector / 8, state->sector,
state->sector / 8U, state->sector,
s_kb, state->hash_level);
break;
}
Expand Down