From 63c9ec01b716adb58894a5f165681c557cae94f6 Mon Sep 17 00:00:00 2001 From: Stephan Ruloff Date: Wed, 9 Feb 2022 17:55:16 +0100 Subject: [PATCH] Fixed right alignment problem. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index d7398c8..cf9033e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -790,7 +790,7 @@ void displaySupported(const struct arguments &args) FTDIpp_MPSSE::mpsse_bit_config c = (*b).second.config; stringstream ss; ss << setw(25) << left << (*b).first; - ss << "0x" << hex << setw(4) << setfill('0') << c.vid << ":" << setw(4) << c.pid; + ss << "0x" << hex << right << setw(4) << setfill('0') << c.vid << ":" << setw(4) << c.pid; printInfo(ss.str()); } cout << endl;