From 44cbcfe1a32b050277add1dc6d07fc580410a1d5 Mon Sep 17 00:00:00 2001 From: Greg Farnum Date: Fri, 17 Jul 2009 15:23:22 -0700 Subject: [PATCH] CephBroker: Removed unneeded ++ --- src/client/hypertable/CephBroker.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/client/hypertable/CephBroker.cc b/src/client/hypertable/CephBroker.cc index 2432e9a6f0ae7..1b29131ad030a 100644 --- a/src/client/hypertable/CephBroker.cc +++ b/src/client/hypertable/CephBroker.cc @@ -51,7 +51,7 @@ CephBroker::CephBroker(PropertiesPtr& cfg) { argv[argc++] = "0"; */ HT_INFO("Calling ceph_initialize"); - ceph_initialize(argc++, argv); + ceph_initialize(argc, argv); HT_INFO("Calling ceph_mount"); ceph_mount(); HT_INFO("Returning from constructor"); @@ -381,8 +381,6 @@ void CephBroker::status(ResponseCallback *cb) { included in Hypertable also do this. */ } -/* I have no idea if this is correct; it's what local and kosmos brokers do. Check the contract! - */ void CephBroker::shutdown(ResponseCallback *cb) { m_open_file_map.remove_all(); cb->response_ok(); -- 2.39.5