From 7564035c8fec64daffe4fe43ae56ad954f57e279 Mon Sep 17 00:00:00 2001 From: Greg Farnum Date: Mon, 12 Sep 2011 16:02:43 -0700 Subject: [PATCH] test_librbd: remove unsigned/signed comparison Signed-off-by: Greg Farnum --- src/test/test_librbd.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/test_librbd.cc b/src/test/test_librbd.cc index 53d7d3cac8e61..42b300197b6f8 100644 --- a/src/test/test_librbd.cc +++ b/src/test/test_librbd.cc @@ -670,7 +670,7 @@ void aio_write_test_data(librbd::Image& image, const char *test_data, off_t off) void write_test_data(librbd::Image& image, const char *test_data, off_t off) { - int written; + size_t written; size_t len = strlen(test_data); ceph::bufferlist bl; bl.append(test_data, len); -- 2.39.5