From f80c2dc77f5d0c1ce4bd18656603b7630f3d3aea Mon Sep 17 00:00:00 2001 From: Joe Thornber Date: Mon, 16 Jun 2014 13:58:25 +0100 Subject: [PATCH] [thin_delta] Don't use endl which also flushes --- thin-provisioning/thin_delta.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thin-provisioning/thin_delta.cc b/thin-provisioning/thin_delta.cc index c12c084..ed32763 100644 --- a/thin-provisioning/thin_delta.cc +++ b/thin-provisioning/thin_delta.cc @@ -117,10 +117,10 @@ namespace { if (oend_ - obegin_ > 1) { cout << "" << endl; + << " length=\"" << oend_ - obegin_ << "\"/>" << '\n'; } else { cout << "" << endl; + << " data_block=\"" << dbegin_ << "\"/>" << '\n'; } obegin_ = oblock;