From ab183d211152444663dd4d2f3f50421328dc5116 Mon Sep 17 00:00:00 2001 From: daniel-k Date: Thu, 21 Dec 2017 21:17:26 +0100 Subject: [PATCH] lib/ip: flip output of IpIdentifier (name first, VLNV second) --- fpga/include/villas/fpga/ip.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fpga/include/villas/fpga/ip.hpp b/fpga/include/villas/fpga/ip.hpp index 0e0001a34..8da572d7e 100644 --- a/fpga/include/villas/fpga/ip.hpp +++ b/fpga/include/villas/fpga/ip.hpp @@ -59,7 +59,7 @@ public: friend std::ostream& operator<< (std::ostream& stream, const IpIdentifier& id) - { return stream << "VLNV: " << id.vlnv << " Name: " << id.name; } + { return stream << " Name: " << id.name << "(VLNV: " << id.vlnv << ")"; } Vlnv vlnv; std::string name;