From 0a5f7424660e404e5fd0361b9331d154acf01d6c Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Mon, 20 Oct 2008 13:53:23 +0000 Subject: Marked all unused args on non-W32 platforms. --- scd/command.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'scd/command.c') diff --git a/scd/command.c b/scd/command.c index 4c55e6167..b835aac73 100644 --- a/scd/command.c +++ b/scd/command.c @@ -1502,6 +1502,8 @@ cmd_unlock (assuan_context_t ctx, char *line) ctrl_t ctrl = assuan_get_pointer (ctx); int rc = 0; + (void)line; + if (locked_session) { if (locked_session != ctrl->server_local) @@ -1624,6 +1626,8 @@ cmd_restart (assuan_context_t ctx, char *line) { ctrl_t ctrl = assuan_get_pointer (ctx); + (void)line; + if (ctrl->app_ctx) { release_application (ctrl->app_ctx); @@ -1646,6 +1650,8 @@ cmd_restart (assuan_context_t ctx, char *line) static int cmd_disconnect (assuan_context_t ctx, char *line) { + (void)ctx; + (void)line; return gpg_error (GPG_ERR_NOT_IMPLEMENTED); } -- cgit v1.2.3