Skip to content

Commit

Permalink
fix build warning
Browse files Browse the repository at this point in the history
  • Loading branch information
davidly committed Feb 8, 2025
1 parent d6bff13 commit a22dab3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ntvcm.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -3076,7 +3076,7 @@ int main( int argc, char * argv[] )
else // Try to match a lower case options
{
#if defined( _WIN32 ) // Command line options are case sensitive on Linux/NetBSD...
ca = tolower( ca );
ca = (char) tolower( ca );
#endif
if ( 'h' == ca || '?' == ca )
help();
Expand Down

0 comments on commit a22dab3

Please sign in to comment.