aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2024-03-14 15:42:14 +0700
committerfixeria <vyanitskiy@sysmocom.de>2024-03-14 09:11:11 +0000
commit61906936f9fa23213e2c4da334f745ef83cc38c8 (patch)
tree374541127a533bffac3acde68a406b6eb128c0c6 /src
parent9c604f47381426ed078e96050205a614f9913417 (diff)
core: fix missing '\n' in iofd_uring_connected_cb()
Diffstat (limited to 'src')
-rw-r--r--src/core/osmo_io_uring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/osmo_io_uring.c b/src/core/osmo_io_uring.c
index 29b18cae..e163ee01 100644
--- a/src/core/osmo_io_uring.c
+++ b/src/core/osmo_io_uring.c
@@ -461,7 +461,7 @@ static int iofd_uring_connected_cb(struct osmo_fd *ofd, unsigned int what)
{
struct osmo_io_fd *iofd = ofd->data;
- LOGPIO(iofd, LOGL_DEBUG, "Socket connected or failed.");
+ LOGPIO(iofd, LOGL_DEBUG, "Socket connected or failed.\n");
if (!(what & OSMO_FD_WRITE))
return 0;