dexter has submitted this change. ( https://gerrit.osmocom.org/c/osmo-bts/+/31675 )
Change subject: pcu_sock: cosmetic: remove whitespace after type cast ......................................................................
pcu_sock: cosmetic: remove whitespace after type cast
Change-Id: I373b510efab4874f59f75385bd0e1229692299ec --- M src/common/pcu_sock.c 1 file changed, 10 insertions(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified fixeria: Looks good to me, approved
diff --git a/src/common/pcu_sock.c b/src/common/pcu_sock.c index b0fd936..7f0af56 100644 --- a/src/common/pcu_sock.c +++ b/src/common/pcu_sock.c @@ -1163,7 +1163,7 @@ 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;