pcu_sock: cosmetic: remove whitespace after type cast

Change-Id: I373b510efab4874f59f75385bd0e1229692299ec
This commit is contained in:
Philipp Maier 2023-03-06 12:26:46 +01:00
parent bdc438299b
commit cc13ea8b66
1 changed files with 1 additions and 1 deletions

View File

@ -1163,7 +1163,7 @@ static int pcu_sock_accept(struct osmo_fd *bfd, unsigned int flags)
int fd;
len = sizeof(un_addr);
fd = accept(bfd->fd, (struct sockaddr *) &un_addr, &len);
fd = accept(bfd->fd, (struct sockaddr *)&un_addr, &len);
if (fd < 0) {
LOGP(DPCU, LOGL_ERROR, "Failed to accept a new connection\n");
return -1;