From af2adf92485c749a525ea6f2daee14137d7a1554 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Thu, 8 Mar 2018 11:43:36 -0500 Subject: [PATCH] pvlist remove comma some shells will include the trailing ',' in selection when double clicking. Users find this annoying. --- pvtoolsSrc/pvlist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvtoolsSrc/pvlist.cpp b/pvtoolsSrc/pvlist.cpp index f739ce6..e9840c6 100644 --- a/pvtoolsSrc/pvlist.cpp +++ b/pvtoolsSrc/pvlist.cpp @@ -580,7 +580,7 @@ int main (int argc, char *argv[]) { const ServerEntry& entry = iter->second; - cout << "GUID 0x" << entry.guid << ", version " << (int)entry.version << ": " + cout << "GUID 0x" << entry.guid << " version " << (int)entry.version << ": " << entry.protocol << "@["; size_t count = entry.addresses.size();