renames.c
14.7 KB
- 
tests: merge: fix printf formatter on 32 bit arches · 0cf9b666We currently use `PRIuMAX` to print an integer of type `size_t` in merge::trees::rename::cache_recomputation. While this works just fine on 64 bit arches, it doesn't on 32 bit ones. As a result, our nightly builds on x86 and arm32 fail. Fix the issue by using `PRIuZ` instead. Patrick Steinhardt committed
