Skip to content

Commit

Permalink
Code review
Browse files Browse the repository at this point in the history
  • Loading branch information
walbourn committed Oct 26, 2024
1 parent 0b23257 commit 9233883
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Meshconvert/Meshconvert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ namespace
{ nullptr, 0 }
};

const SValue<uint64_t> g_pOptionsLong[] =
const SValue<uint32_t> g_pOptionsLong[] =
{
{ L"clean", OPT_CLEAN },
{ L"clockwise", OPT_CLOCKWISE },
Expand Down Expand Up @@ -333,7 +333,7 @@ int __cdecl wmain(_In_ int argc, _In_z_count_(argc) wchar_t* argv[])

if (allowOpts && (('-' == pArg[0]) || ('/' == pArg[0])))
{
uint64_t dwOption = 0;
uint32_t dwOption = 0;
PWSTR pValue = nullptr;

if (('-' == pArg[0]) && ('-' == pArg[1]))
Expand Down

0 comments on commit 9233883

Please sign in to comment.