Skip to content

Commit

Permalink
int to size_t
Browse files Browse the repository at this point in the history
  • Loading branch information
slabasan committed Oct 25, 2024
1 parent 78d27db commit 141ce25
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion msrsave/msrsave.c
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,8 @@ int msr_save(const char *save_path, const char *allowlist_path, const char *msr_
{
int err = 0;
int tmp_err = 0;
int i, j;
int i;
size_t j;
int msr_fd = -1;
size_t num_msr = 0;
uint64_t *msr_offset = NULL;
Expand Down

0 comments on commit 141ce25

Please sign in to comment.