Skip to content

Commit

Permalink
CR-1219148 Fix --pmode in xrt-smi configure help menu
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Chane <[email protected]>
  • Loading branch information
rchane committed Feb 5, 2025
1 parent 0f38220 commit 2b1cf83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime_src/core/tools/common/XBHelpMenusCore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ display_subcommand_options(const std::string& executable,
if (usageSuboption.empty())
std::cout << boost::format(fh.fgc_header + "\nUSAGE: " + fh.fgc_usageBody + "%s %s %s\n" + fh.fgc_reset) % executable % subcommand % usage;
else
std::cout << boost::format(fh.fgc_header + "\nUSAGE: " + fh.fgc_usageBody + "%s %s [ %s ] %s\n" + fh.fgc_reset) % executable % subcommand % usageSuboption % usage;
std::cout << boost::format(fh.fgc_header + "\nUSAGE: " + fh.fgc_usageBody + "%s %s %s %s\n" + fh.fgc_reset) % executable % subcommand % usageSuboption % usage;

std::map<std::string, std::vector<std::shared_ptr<JSONConfigurable>>> commonJsonOptions;
if (commandConfig.empty())
Expand Down

0 comments on commit 2b1cf83

Please sign in to comment.