fix %lu warning

This commit is contained in:
tickduan 2021-07-08 15:51:21 +08:00
parent bf7e2bff4f
commit dad9c44e54
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=%lu \n", count, count*sizeof(float));
printf(" count=%d write bytes=%d \n", count, (int)count*sizeof(float));
return true;
}