Blob Blame History Raw
commit 5177a6c84d9378d705755844dc5f2b212de49a8c
Author: David Smith <dsmith@redhat.com>
Date:   Mon Mar 27 11:36:42 2017 -0500

    Fix BZ1431263 commit by removing unused arg.
    
    * tapsets.cxx (enroll): Remove unused systemtap_session argument.

diff --git a/tapsets.cxx b/tapsets.cxx
index c80e831..2274ae6 100644
--- a/tapsets.cxx
+++ b/tapsets.cxx
@@ -10163,7 +10163,7 @@ void hwbkpt_derived_probe::join_group (systemtap_session& s)
   this->group = s.hwbkpt_derived_probes;
 }
 
-void hwbkpt_derived_probe_group::enroll (hwbkpt_derived_probe* p, systemtap_session& s)
+void hwbkpt_derived_probe_group::enroll (hwbkpt_derived_probe* p, systemtap_session&)
 {
   hwbkpt_probes.push_back (p);
 }