diff options
author | Sage Weil <sage@inktank.com> | 2013-02-08 09:59:25 -0800 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-02-08 09:59:25 -0800 |
commit | 3cf3710be0b4cccc8de152a97be50d983c35116d (patch) | |
tree | 94c0e1aabfb55a6d11bc58963942cad56c9c8a2a | |
parent | 4837063d447afb45554f55bb6fde1c97559acd4b (diff) | |
download | ceph-3cf3710be0b4cccc8de152a97be50d983c35116d.tar.gz |
mon: fix typo in C_Stats
Broken by previous commit.
Signed-off-by: Sage Weil <sage@inktank.com>
-rw-r--r-- | src/mon/PGMonitor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mon/PGMonitor.h b/src/mon/PGMonitor.h index 5db1744111d..c150e157b9d 100644 --- a/src/mon/PGMonitor.h +++ b/src/mon/PGMonitor.h @@ -78,7 +78,7 @@ private: ack->put(); } else { ack->put(); - dispatch(req); + pgmon->dispatch(req); } } }; |