Skip to content

Commit

Permalink
Merge pull request #203 from flaviojs/fix-format-type-cmd_parser_test
Browse files Browse the repository at this point in the history
Fix format type in cmd_parser_test.
  • Loading branch information
grossmj authored Mar 29, 2024
2 parents e3f59ef + 11f516c commit 957abc3
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 957abc3

Please sign in to comment.