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 b5a448d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions 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 Expand Up @@ -393,7 +394,8 @@ int msr_restore(const char *restore_path, const char *allowlist_path, const char
{
int err = 0;
int tmp_err = 0;
int i, j;
int i;
size_t j;
int msr_fd = -1;
int do_print_header = 1;
size_t num_msr = 0;
Expand Down

0 comments on commit b5a448d

Please sign in to comment.