use any instead of interface

This commit is contained in:
ston1th 2023-03-21 01:30:56 +01:00
commit 8f350b4b02
5 changed files with 9 additions and 9 deletions

View file

@ -90,7 +90,7 @@ func unixListener(socket string) (sock net.Listener, err error) {
if err != nil {
return
}
err = os.Chmod(socket, 0660)
err = os.Chmod(socket, 0o660)
return
}