Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Typecast printf() args to avoid compiler warnings. (#716)
Details: - In bli_thread_range_tlb.c, typecast integer arguments passed to printf() -- which are typically disabled unless debugging -- to type "long" to guarantee a match to the "%ld" format specifiers used in those calls. This avoids spurious warnings with certain compilers in certain toolchain environments, such as 32-bit RISC-V (rv32iv).
- Loading branch information