core: fix LOGPIO(): add missing space after 'iofd(...)'

Without a space the logging looks like this:

  iofd(virt-rnc0-0)Cancelling read

Change-Id: I84d305ce6cfc69352a64cb9e42229f88f09893c0
This commit is contained in:
Vadim Yanitskiy 2024-05-15 16:10:50 +05:00
parent fb8cd65221
commit 03237a4777
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@
* \param[in] args arguments to the format string
*/
#define LOGPIO(iofd, level, fmt, args...) \
LOGP(DLIO, level, "iofd(%s)" fmt, iofd->name, ## args)
LOGP(DLIO, level, "iofd(%s) " fmt, iofd->name, ## args)
struct osmo_io_fd;