aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2023-03-06 12:26:46 +0100
committerPhilipp Maier <pmaier@sysmocom.de>2023-03-06 12:26:46 +0100
commitcc13ea8b66fa086b3476b77dc0bac2e7b47ac371 (patch)
tree4fcc8bae30856f7c01b1accb65275ebf5f194545
parentbdc438299b9932caa1df8723bc35cd5cfaf6061d (diff)
pcu_sock: cosmetic: remove whitespace after type cast
-rw-r--r--src/common/pcu_sock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/pcu_sock.c b/src/common/pcu_sock.c
index b0fd9360..7f0af56c 100644
--- a/src/common/pcu_sock.c
+++ b/src/common/pcu_sock.c
@@ -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;