diff options
author | Sage Weil <sage.weil@dreamhost.com> | 2012-01-29 17:26:55 -0800 |
---|---|---|
committer | Sage Weil <sage.weil@dreamhost.com> | 2012-01-29 17:26:55 -0800 |
commit | 773acfdf3ed19d0f4ce0b19ef3df7b26522a1d85 (patch) | |
tree | b86d39b8afa7959cf8b45796db1f43cbea41b50b | |
parent | 9454102a49a265d8041cdb04d69fb65d511575c8 (diff) | |
download | ceph-773acfdf3ed19d0f4ce0b19ef3df7b26522a1d85.tar.gz |
osd: remove unused var
warning: osd/PG.cc:1331:20: variable 'plu' set but not used [-Wunused-but-set-variable]
Signed-off-by: Sage Weil <sage.weil@dreamhost.com>
-rw-r--r-- | src/osd/PG.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/osd/PG.cc b/src/osd/PG.cc index e1dd7539960..ae3bf1405b0 100644 --- a/src/osd/PG.cc +++ b/src/osd/PG.cc @@ -1328,7 +1328,6 @@ void PG::activate(ObjectStore::Transaction& t, list<Context*>& tfin, // update local version of peer's missing list! if (m && pi.last_backfill != hobject_t()) { - eversion_t plu = pi.last_update; for (list<Log::Entry>::iterator p = m->log.log.begin(); p != m->log.log.end(); p++) |