Skip to content

Commit a22dab3

Browse files
committed
fix build warning
1 parent d6bff13 commit a22dab3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ntvcm.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3076,7 +3076,7 @@ int main( int argc, char * argv[] )
30763076
else // Try to match a lower case options
30773077
{
30783078
#if defined( _WIN32 ) // Command line options are case sensitive on Linux/NetBSD...
3079-
ca = tolower( ca );
3079+
ca = (char) tolower( ca );
30803080
#endif
30813081
if ( 'h' == ca || '?' == ca )
30823082
help();

0 commit comments

Comments
 (0)