arm32 fix warning

This commit is contained in:
tickduan 2021-07-08 15:55:49 +08:00
parent dad9c44e54
commit ddcd211f1b
1 changed files with 1 additions and 1 deletions

View File

@ -348,7 +348,7 @@ bool txt_to_bin(const char* inFile, const char* outFile){
fclose(pfout);
// total
printf(" count=%d write bytes=%d \n", count, (int)count*sizeof(float));
printf(" count=%d write bytes=%d \n", count, (int)(count*sizeof(float)));
return true;
}