Apply 1 suggestion(s) to 1 file(s)

This commit is contained in:
Barnabás Pőcze 2024-01-20 17:09:37 +00:00 committed by Wim Taymans
parent 44f1462711
commit 1274ebe069

View file

@ -385,7 +385,8 @@ static bool is_multicast(struct sockaddr *sa, socklen_t salen)
return false;
}
static int make_unix_socket(char *path, char *client_path) {
static int make_unix_socket(const char *path, const char *client_path)
{
struct sockaddr_un client_addr, server_addr;
spa_autoclose int fd = socket(AF_UNIX, SOCK_DGRAM, 0);