summaryrefslogtreecommitdiffstats
path: root/staptree.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'staptree.cxx')
-rw-r--r--staptree.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/staptree.cxx b/staptree.cxx
index 6d001375..36ef04f5 100644
--- a/staptree.cxx
+++ b/staptree.cxx
@@ -1,5 +1,5 @@
// parse tree functions
-// Copyright (C) 2005, 2006 Red Hat Inc.
+// Copyright (C) 2005-2008 Red Hat Inc.
//
// This file is part of systemtap, and is free software. You can
// redistribute it and/or modify it under the terms of the GNU General
@@ -903,9 +903,9 @@ void probe::printsig (ostream& o) const
void
-probe::collect_derivation_chain (std::vector<derived_probe*> &probes_list)
+probe::collect_derivation_chain (std::vector<probe*> &probes_list)
{
- probes_list.push_back((derived_probe*)this);
+ probes_list.push_back(this);
}