COMP: less warnings with msvc8
Alex
This commit is contained in:
parent
25c6073080
commit
cfee916b7c
@ -38,7 +38,7 @@ static unsigned int ChompStrlen(const char* line)
|
|||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
size_t length = strlen(line);
|
unsigned int length = static_cast<unsigned int>(strlen(line));
|
||||||
if ((line[length-1] == '\n') || (line[length-1] == '\r'))
|
if ((line[length-1] == '\n') || (line[length-1] == '\r'))
|
||||||
{
|
{
|
||||||
length--;
|
length--;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user