From b157256a2b7e1232808a61f4c825f7902d6bf091 Mon Sep 17 00:00:00 2001 From: Piotr Tworek Date: Tue, 21 Sep 2021 23:15:59 +0200 Subject: [PATCH] uplink client: Add missing space in warning message. Right now the warning about failure to forward packet from driver to uplink RX connection reads: "exception while trying to forward packet from driverto Uplink connection TX" Add missing space between "driver" and "to". Issue #4264 --- .../os/src/drivers/nic/include/drivers/nic/uplink_client_base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/os/src/drivers/nic/include/drivers/nic/uplink_client_base.h b/repos/os/src/drivers/nic/include/drivers/nic/uplink_client_base.h index a3b31fcda3..730e602b81 100644 --- a/repos/os/src/drivers/nic/include/drivers/nic/uplink_client_base.h +++ b/repos/os/src/drivers/nic/include/drivers/nic/uplink_client_base.h @@ -230,7 +230,7 @@ class Genode::Uplink_client_base : Noncopyable } catch (...) { - warning("exception while trying to forward packet from driver" + warning("exception while trying to forward packet from driver " "to Uplink connection TX"); return;