Fixed right alignment problem.

This commit is contained in:
Stephan Ruloff 2022-02-09 17:55:16 +01:00
parent 12c5e6ba19
commit 63c9ec01b7
1 changed files with 1 additions and 1 deletions

View File

@ -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;