File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1264,7 +1264,7 @@ void displaySupported(const struct arguments &args)
12641264
12651265 if (args.list_boards ) {
12661266 stringstream t;
1267- t << setw (26 ) << left << " board name" << setw (19 ) << " cable_name" ;
1267+ t << setw (27 ) << left << " board name" << setw (19 ) << " cable_name" ;
12681268 t << setw (25 ) << " fpga_part" ;
12691269 printSuccess (t.str ());
12701270 for (auto b = board_list.begin (); b != board_list.end (); b++) {
@@ -1276,7 +1276,7 @@ void displaySupported(const struct arguments &args)
12761276 cable_name = " Undefined" ;
12771277 if (fpga_part.size () == 0 )
12781278 fpga_part = " Undefined" ;
1279- ss << setw (26 ) << left << (*b).first << setw (19 ) << cable_name;
1279+ ss << setw (27 ) << left << (*b).first << setw (19 ) << cable_name;
12801280 ss << setw (25 )<< fpga_part;
12811281 printInfo (ss.str ());
12821282 }
You can’t perform that action at this time.
0 commit comments