]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commit
memstore: fix the build on i386
authorKefu Chai <kchai@redhat.com>
Wed, 2 Sep 2015 09:20:36 +0000 (17:20 +0800)
committerKefu Chai <kchai@redhat.com>
Wed, 2 Sep 2015 09:23:22 +0000 (17:23 +0800)
commit67f5f5217795474b610c20bdf35922e076b8169b
tree8a8174152ea089c98d0190d35b7879aba71e2c16
parent4ea3b1a4f03ceaa3ab0ede050750c2f834d5f0f2
memstore: fix the build on i386

on i386, uint64 is `unsigned long long`, while size_t is `unsigned int`.
std::min(uint64, size_t) can not be resolved.

Signed-off-by: Kefu Chai <kchai@redhat.com>
src/os/MemStore.cc