From cb25861c7ed23875b12e6be084bf9249dea6b530 Mon Sep 17 00:00:00 2001 From: daniel-k Date: Tue, 9 Jan 2018 10:41:20 +0100 Subject: [PATCH] ip: remove excess space in output of identifier --- fpga/include/villas/fpga/ip.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fpga/include/villas/fpga/ip.hpp b/fpga/include/villas/fpga/ip.hpp index a9cef05a9..ee1b0e99c 100644 --- a/fpga/include/villas/fpga/ip.hpp +++ b/fpga/include/villas/fpga/ip.hpp @@ -33,6 +33,7 @@ #include "fpga/vlnv.hpp" #include "plugin.hpp" +#include "log.hpp" #include #include @@ -59,7 +60,7 @@ public: friend std::ostream& operator<< (std::ostream& stream, const IpIdentifier& id) - { return stream << " Name: " << id.name << "(VLNV: " << id.vlnv << ")"; } + { return stream << "Name: " << TXT_BOLD(id.name) << " (VLNV: " << id.vlnv << ")"; } Vlnv vlnv; std::string name;