Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 096abd55 authored by Elliott Hughes's avatar Elliott Hughes Committed by Android Git Automerger
Browse files

am fa1df016: Merge "Accept takes a socklen_t, not an int."

* commit 'fa1df016':
  Accept takes a socklen_t, not an int.
parents 68ec126d fa1df016
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -214,7 +214,7 @@ static int accept_server_socket(int sfd)
    struct sockaddr_un remote;
    struct pollfd pfd;
    int fd;
    int len = sizeof(struct sockaddr_un);
    socklen_t len = sizeof(struct sockaddr_un);

    BTIF_TRACE_EVENT1("accept fd %d", sfd);