From a3534b576f72deef16fcd4c1e7524d9e49fbf74c Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Wed, 15 Dec 2021 00:29:05 +0100 Subject: global: interface{} -> any Signed-off-by: Jason A. Donenfeld --- manager/ipc_server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'manager') diff --git a/manager/ipc_server.go b/manager/ipc_server.go index bb36c649..d51aba0e 100644 --- a/manager/ipc_server.go +++ b/manager/ipc_server.go @@ -461,7 +461,7 @@ func IPCServerListen(reader, writer, events *os.File, elevatedToken windows.Toke }() } -func notifyAll(notificationType NotificationType, adminOnly bool, ifaces ...interface{}) { +func notifyAll(notificationType NotificationType, adminOnly bool, ifaces ...any) { if len(managerServices) == 0 { return } -- cgit v1.2.3-59-g8ed1b