pcu_sock: cosmetic: remove whitespace after type cast

Change-Id: Iddc1bd703b4a200202ffa87d24a167e3fe39da18
This commit is contained in:
Philipp Maier 2023-03-06 14:35:07 +01:00 committed by laforge
parent 280ad4d966
commit 6d3da5401f
1 changed files with 1 additions and 1 deletions

View File

@ -917,7 +917,7 @@ static int pcu_sock_accept(struct osmo_fd *bfd, unsigned int flags)
bts = llist_entry(state->net->bts_list.next, struct gsm_bts, list);
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) {
LOG_BTS(bts, DPCU, LOGL_ERROR, "Failed to accept a new connection\n");
return -1;