Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix x86 build
  • Loading branch information
elinor-fung committed Nov 30, 2022
commit 9496417b0d4945f6d770074d781dfb3063c84ae0
2 changes: 1 addition & 1 deletion src/native/corehost/apphost/apphost.windows.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ namespace

// & indicates an accelerator key when in hyperlink text.
// Replace & with && such that the single ampersand is shown.
for (int i = 0; i < pal::strlen(url); ++i)
for (size_t i = 0; i < pal::strlen(url); ++i)
{
str.push_back(url[i]);
if (url[i] == _X('&'))
Expand Down