]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mds: drop unneed default arg
authorSage Weil <sage.weil@dreamhost.com>
Thu, 12 May 2011 04:18:57 +0000 (21:18 -0700)
committerSage Weil <sage.weil@dreamhost.com>
Thu, 12 May 2011 04:21:41 +0000 (21:21 -0700)
Signed-off-by: Sage Weil <sage.weil@dreamhost.com>
src/mds/Locker.h

index 490cd78e01c741722665921a1dbd395e30fab5d5..2b72654fd456e761752ad719fc43e6230becf594 100644 (file)
@@ -94,7 +94,7 @@ public:
 
   void eval_gather(SimpleLock *lock, bool first=false, bool *need_issue=0, list<Context*> *pfinishers=0);
   void eval(SimpleLock *lock, bool *need_issue=0);
-  void eval_any(SimpleLock *lock, bool *need_issue=0) {
+  void eval_any(SimpleLock *lock, bool *need_issue) {
     if (!lock->is_stable())
       eval_gather(lock, false, need_issue);
     else if (lock->get_parent()->is_auth())