- cleanup of last compiler warnings in Linux (hurray!)

This commit is contained in:
Mark Vejvoda
2010-10-21 18:24:54 +00:00
parent ba088e9258
commit 79318735ab
3 changed files with 3 additions and 3 deletions

View File

@@ -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;
}