From a9a5c2ebb70d55655007793ee87a2816712059ca Mon Sep 17 00:00:00 2001 From: Patrick LeBlanc Date: Tue, 29 Jan 2019 09:53:18 -0600 Subject: [PATCH] Reordered a couple params. --- utils/cloudio/SMComm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/cloudio/SMComm.cpp b/utils/cloudio/SMComm.cpp index ad88fdc8f..3f9eef4a5 100644 --- a/utils/cloudio/SMComm.cpp +++ b/utils/cloudio/SMComm.cpp @@ -181,7 +181,7 @@ int SMComm::truncate(const string &filename, const off64_t length) ByteStream *response = buffers.getByteStream(); int err; - *command << (uint8_t) storagemanager::TRUNCATE << filename << length; + *command << (uint8_t) storagemanager::TRUNCATE << length << filename; err = sockets.send_recv(*command, response); if (err) common_exit(command, response, err);