From cf4a7d9f3882c28292b5e00a314d4cbd36a90002 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sun, 14 Jul 2024 16:22:39 +0200 Subject: Fix warnings --- server.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server.c b/server.c index 973e1f7..81147b5 100644 --- a/server.c +++ b/server.c @@ -582,7 +582,6 @@ static const char * InArgMsgField(const argument_t *arg) { static char buffer[100]; - const ipc_type_t *it = arg->argType; /* * Inside the kernel, the request and reply port fields @@ -1306,7 +1305,7 @@ WritePackArg(FILE *file, const argument_t *arg) fprintf(file, "\t\t\tmach_port_name_t tmp_port_name = %sP[i - 1];\n", arg->argVarName); fprintf(file, "\t\t\t/* Clear the whole message with zeros. */\n"); fprintf(file, "\t\t\tOutP->%s[i - 1].kernel_port_do_not_use = 0;\n", arg->argMsgField); - fprintf(file, "\t\t\tOutP->%s[i - 1].name = tmp_port_name;\n", arg->argMsgField, arg->argVarName); + fprintf(file, "\t\t\tOutP->%s[i - 1].name = tmp_port_name;\n", arg->argMsgField); fprintf(file, "\t\t}\n"); } fprintf(file, "\t}\n"); -- cgit v1.2.3