From 61906936f9fa23213e2c4da334f745ef83cc38c8 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Thu, 14 Mar 2024 15:42:14 +0700 Subject: [PATCH] core: fix missing '\n' in iofd_uring_connected_cb() Change-Id: I43df86cdbd3e52d4f8f7bc0e48478b6f9b288e9f --- src/core/osmo_io_uring.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/osmo_io_uring.c b/src/core/osmo_io_uring.c index 29b18cae9..e163ee01b 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;