From 60a61be5497cf9088b0522d27f2bd82bdfca5acc Mon Sep 17 00:00:00 2001 From: Frediano Ziglio Date: Wed, 9 Oct 2019 20:33:27 +0100 Subject: [PATCH] smartcard: Fix statement termination Signed-off-by: Frediano Ziglio Acked-by: Victor Toso --- server/smartcard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/smartcard.c b/server/smartcard.c index 340118e1..d62847d6 100644 --- a/server/smartcard.c +++ b/server/smartcard.c @@ -559,7 +559,7 @@ red_smartcard_channel_class_init(RedSmartcardChannelClass *klass) object_class->constructed = red_smartcard_channel_constructed; channel_class->parser = spice_get_client_channel_parser(SPICE_CHANNEL_SMARTCARD, NULL); - channel_class->handle_message = smartcard_channel_client_handle_message, + channel_class->handle_message = smartcard_channel_client_handle_message; channel_class->send_item = smartcard_channel_send_item; channel_class->handle_migrate_flush_mark = smartcard_channel_client_handle_migrate_flush_mark;