From b71196ef073dc1c49f4e42c0380b553286fe426c Mon Sep 17 00:00:00 2001 From: fiaxh Date: Tue, 12 Oct 2021 17:54:00 +0200 Subject: Fix compiler warnings ('passing argument .. from incompatible pointer type') by passing (non)const argument --- libdino/src/service/blocking_manager.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libdino') diff --git a/libdino/src/service/blocking_manager.vala b/libdino/src/service/blocking_manager.vala index 183c8a9e..aa07f990 100644 --- a/libdino/src/service/blocking_manager.vala +++ b/libdino/src/service/blocking_manager.vala @@ -27,12 +27,12 @@ public class BlockingManager : StreamInteractionModule, Object { public void block(Account account, Jid jid) { XmppStream stream = stream_interactor.get_stream(account); - stream.get_module(Xmpp.Xep.BlockingCommand.Module.IDENTITY).block(stream, new ArrayList.wrap(new string[] {jid.to_string()})); + stream.get_module(Xmpp.Xep.BlockingCommand.Module.IDENTITY).block(stream, { jid.to_string() }); } public void unblock(Account account, Jid jid) { XmppStream stream = stream_interactor.get_stream(account); - stream.get_module(Xmpp.Xep.BlockingCommand.Module.IDENTITY).unblock(stream, new ArrayList.wrap(new string[] {jid.to_string()})); + stream.get_module(Xmpp.Xep.BlockingCommand.Module.IDENTITY).unblock(stream, { jid.to_string() }); } public bool is_supported(Account account) { -- cgit v1.2.3-54-g00ecf