make linter happy

This commit is contained in:
2025-11-10 20:55:50 +01:00
parent 22835c081a
commit 9ae7b4167e

View File

@@ -34,8 +34,8 @@ func (ipc *SwayIPC) Connect() error {
}
// Close the socket.
func (ipc *SwayIPC) Close() {
ipc.socket.Close()
func (ipc *SwayIPC) Close() error {
return ipc.socket.Close()
}
func (ipc *SwayIPC) sendHeader(messageType uint32, len uint32) error {