1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

ip: remove excess space in output of identifier

This commit is contained in:
daniel-k 2018-01-09 10:41:20 +01:00
parent 018c89a2b0
commit cb25861c7e

View file

@ -33,6 +33,7 @@
#include "fpga/vlnv.hpp"
#include "plugin.hpp"
#include "log.hpp"
#include <map>
#include <list>
@ -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;