From: Samuel Just Date: Tue, 9 Jul 2013 17:35:09 +0000 (-0700) Subject: librados/misc.cc: reverse offset and length on write call X-Git-Tag: v0.67-rc1~127^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c4870143c9edf9d8c7f57fc54fd0edb3d41ece4b;p=ceph.git librados/misc.cc: reverse offset and length on write call Signed-off-by: Samuel Just --- diff --git a/src/test/librados/misc.cc b/src/test/librados/misc.cc index a23c0d23f6e6..6cb7cf5452ac 100644 --- a/src/test/librados/misc.cc +++ b/src/test/librados/misc.cc @@ -405,7 +405,7 @@ TEST(LibRadosMisc, BigObjectPP) { #ifdef __LP64__ // this test only works on 64-bit platforms - ASSERT_EQ(-EFBIG, ioctx.write("foo", bl, 500000000000ull, bl.length())); + ASSERT_EQ(-EFBIG, ioctx.write("foo", bl, bl.length(), 500000000000ull)); #endif ioctx.close();