Skip to content

Commit

Permalink
Fix format type in cmd_parser_test.
Browse files Browse the repository at this point in the history
The stable version was fixed in d440d47
  • Loading branch information
flaviojs committed Mar 29, 2024
1 parent e3f59ef commit 11f516c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unstable/hypervisor.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ static int cmd_parser_test(hypervisor_conn_t *conn,int argc,char *argv[])

for(i=0;i<argc;i++)
hypervisor_send_reply(conn,HSC_INFO_MSG,0,
"arg %d (len %u): \"%s\"",
"arg %d (len %lu): \"%s\"",
i,strlen(argv[i]),argv[i]);

hypervisor_send_reply(conn,HSC_INFO_OK,1,"OK");
Expand Down

0 comments on commit 11f516c

Please sign in to comment.