Source: rocksdb
Version: 4.1-1
Severity: important
Justification: fails to build from source
Builds of rocksdb that got as far as building tools (i.e., i386 and
x32) failed:
tools/db_stress.cc: In member function 'void
rocksdb::{anonymous}::Stats::Report(const char*)':
tools/db_stress.cc:593:77: error: format '%ld' expects argument of type 'long
int', but argument 4 has type 'size_t {aka unsigned int}' [-Werror=format=]
fprintf(stdout, "%-12s: Single deleted %ld times\n", "",
single_deletes_);
Could you please take a look? I'd suggest either using %zd or
formally casting to long.
Thanks!