mitdbg / treeline

An update-in-place key-value store for modern storage.
MIT License
132 stars 18 forks source link

Use platform-independent print formatting #8

Closed mmarkakis closed 3 years ago

mmarkakis commented 3 years ago

Using %llu generated compiler warnings for some systems, since the definition of size_t and the correspondence of uint64_t to integer types is system-dependent.

Updated the code to use the recommended %zu for size_t and the macro PRIu64 for uint64_t.