mirror of
https://github.com/glest/glest-source.git
synced 2025-08-12 19:33:59 +02:00
- cleanup of last compiler warnings in Linux (hurray!)
This commit is contained in:
@@ -106,7 +106,7 @@ string boolToStr(bool b){
|
||||
|
||||
string intToStr(int64 i) {
|
||||
char str[strSize]="";
|
||||
sprintf(str, "%lld", i);
|
||||
sprintf(str, "%lld", (long long int)i);
|
||||
return str;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user