Skip to content

Commit 09f272e

Browse files
committed
main: displaySupported added one more space in list-boards
1 parent 1ab3c1b commit 09f272e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)