diff options
author | Sage Weil <sage@inktank.com> | 2013-02-08 09:59:25 -0800 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-02-12 14:15:32 -0800 |
commit | 14fddc3ce85d3695aad9d3597f8f50dba5960a86 (patch) | |
tree | a6f95f844c5f0a2796194ccc8fdc00615788efd0 | |
parent | 0453140d187016a61950a8836da57f54d2c34602 (diff) | |
download | ceph-14fddc3ce85d3695aad9d3597f8f50dba5960a86.tar.gz |
mon: fix typo in C_Stats
Broken by previous commit.
Signed-off-by: Sage Weil <sage@inktank.com>
(cherry picked from commit 3cf3710be0b4cccc8de152a97be50d983c35116d)
-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); } } }; |