Skip to content

Commit

Permalink
fix size_t formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
astibal committed Nov 19, 2023
1 parent a518b21 commit 971b460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service/cmd/diag/diag_cmds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2260,7 +2260,7 @@ int cli_diag_neighbor_clear(struct cli_def *cli, const char *command, char *argv
sz = nb.cache().get_map_ul().size();
nb.cache().clear_ul();
}
cli_print(cli, "cleared %ld entries", sz);
cli_print(cli, "cleared %zu entries", sz);
return CLI_OK;
}

Expand Down

0 comments on commit 971b460

Please sign in to comment.