andrewgregory / pacutils

Helper library for libalpm based programs.
MIT License
107 stars 17 forks source link

cast time_t to size_t for printf #48

Closed jeremyd2019 closed 3 years ago

jeremyd2019 commented 3 years ago

the format string was using %zu, which expects its argument to be a size_t, but time_t may be a different type, triggering for example -Wformat or -Wformat-signedness.

This was causing a build error on MSYS2.