- more compiler warning cleanup

This commit is contained in:
Mark Vejvoda
2010-10-21 16:36:26 +00:00
parent 45a26a4597
commit cbe6860826
6 changed files with 15 additions and 15 deletions

View File

@@ -104,9 +104,9 @@ string boolToStr(bool b){
}
}
string intToStr(int64 i){
string intToStr(int64 i) {
char str[strSize]="";
sprintf(str, "%d", i);
sprintf(str, "%lld", i);
return str;
}