Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
deemru committed Oct 30, 2021
1 parent fb0c5c8 commit 1df40c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/msspi.cpp
Expand Up @@ -605,7 +605,7 @@ static std::string to_dec_string( uint32_t val )

while( val )
{
char c = B2C_VALUE( val % 10 );
char c = B2C_VALUE( (char)( val % 10 ) );
str = c + str;
val /= 10;
}
Expand Down

0 comments on commit 1df40c9

Please sign in to comment.