fix %lu warning
This commit is contained in:
parent
bf7e2bff4f
commit
dad9c44e54
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue