YosysHQ / icestorm

Project IceStorm - Lattice iCE40 FPGAs Bitstream Documentation (Reverse Engineered)
ISC License
963 stars 224 forks source link

icebram,icepack: use correct format specifiers for size #335

Closed maribu closed 6 days ago

maribu commented 1 week ago

For printing size_t the format specifier %lu was used in the code. However, %lu is used to print unsigned long. The correct format specifier for size_t is %zu, so let's use that.

mmicko commented 6 days ago

Thanks