- cleaned up a whole pile of compiler warnings

This commit is contained in:
Mark Vejvoda
2010-10-21 15:21:46 +00:00
parent d5117ed7fa
commit 06b9d7eef7
7 changed files with 25 additions and 22 deletions

View File

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