Skip to content

Commit

Permalink
remove 0
Browse files Browse the repository at this point in the history
  • Loading branch information
PankajBhojwani committed Apr 17, 2024
1 parent 360b92e commit 5e70911
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cascadia/TerminalSettingsModel/ActionAndArgs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ namespace winrt::Microsoft::Terminal::Settings::Model::implementation
// the number of commands a user is expected to have
const auto argsHash32 = static_cast<uint32_t>(_Args.Hash() & 0xFFFFFFFF);
// {0:X} formats the truncated hash to an uppercase hex string
fmt::format_to(std::back_inserter(result), L".{0:X}", argsHash32);
fmt::format_to(std::back_inserter(result), FMT_COMPILE(L".{:X}"), argsHash32);
}
return winrt::hstring{ result };
}
Expand Down

0 comments on commit 5e70911

Please sign in to comment.