summaryrefslogtreecommitdiffstats
path: root/staptree.cxx
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2007-11-26 10:46:21 -0500
committerFrank Ch. Eigler <fche@elastic.org>2007-11-26 10:46:21 -0500
commitea6507e4e059aa8897118aff91e1910372c74c02 (patch)
tree47ecfa27d3d6322e2d5133f1630d3d5d9b147542 /staptree.cxx
parent51bf59c154c1dd2d4e681d8eb6c916c73af3b476 (diff)
downloadsystemtap-steved-ea6507e4e059aa8897118aff91e1910372c74c02.tar.gz
systemtap-steved-ea6507e4e059aa8897118aff91e1910372c74c02.tar.xz
systemtap-steved-ea6507e4e059aa8897118aff91e1910372c74c02.zip
* conditional probe thinko fix cont'd
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 42fc8c24..d0b4a0ed 100644
--- a/staptree.cxx
+++ b/staptree.cxx
@@ -76,19 +76,19 @@ symboldecl::~symboldecl ()
probe_point::probe_point (std::vector<component*> const & comps,
const token * t):
components(comps), tok(t), optional (false), sufficient (false),
- condition (NULL)
+ condition (0)
{
}
probe_point::probe_point ():
- tok (0), optional (false), sufficient (false), condition (NULL)
+ tok (0), optional (false), sufficient (false), condition (0)
{
}
unsigned probe::last_probeidx = 0;
probe::probe ():
- body (0), tok (0)
+ body (0), tok (0), condition (0)
{
this->name = string ("probe_") + lex_cast<string>(last_probeidx ++);
}