diff options
author | Sage Weil <sage@newdream.net> | 2013-02-25 08:53:22 -0800 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2013-02-25 08:53:22 -0800 |
commit | 35ce9d6374f5a6c61ddfa11c2a7a8cf1161c8df2 (patch) | |
tree | 145a36ed8039beb14515eedd6f62e0a29ba86b26 | |
parent | d1724bfe00822eb846250ed34cc22919ed1c9bb0 (diff) | |
parent | 67103a885bc33d07f6a33b1da0f95212adbcf22f (diff) | |
download | ceph-35ce9d6374f5a6c61ddfa11c2a7a8cf1161c8df2.tar.gz |
Merge pull request #72 from dalgaaf/wip-da-comp-sign-unsign
Monitor.cc: fix -Wsign-
Reviewed-by: Sage Weil <sage@inktank.com>
-rw-r--r-- | src/mon/Monitor.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mon/Monitor.cc b/src/mon/Monitor.cc index d6b0565fd51..5cef7e2bbac 100644 --- a/src/mon/Monitor.cc +++ b/src/mon/Monitor.cc @@ -1053,7 +1053,7 @@ void Monitor::sync_timeout(entity_inst_t &entity) return; } - int i = 0; + unsigned int i = 0; string entity_name = monmap->get_name(entity.addr); string debug_mon = g_conf->mon_sync_debug_provider; string debug_fallback = g_conf->mon_sync_debug_provider_fallback; |