summaryrefslogtreecommitdiffstats
path: root/dwarf_wrappers.cxx
diff options
context:
space:
mode:
authorMark Wielaard <mjw@redhat.com>2008-09-24 13:48:26 +0200
committerMark Wielaard <mjw@redhat.com>2008-09-24 13:48:26 +0200
commitc2581b3dabc520e9392e97ef6041ae928f99e927 (patch)
treeb2df6bdae6806cb82d7a5106d9b3f082f12d627b /dwarf_wrappers.cxx
parent7c6a40d0b943d10c0bea44181cfea13aa0923fe9 (diff)
downloadsystemtap-steved-c2581b3dabc520e9392e97ef6041ae928f99e927.tar.gz
systemtap-steved-c2581b3dabc520e9392e97ef6041ae928f99e927.tar.xz
systemtap-steved-c2581b3dabc520e9392e97ef6041ae928f99e927.zip
Correct dwfl_assert () implementation.
Diffstat (limited to 'dwarf_wrappers.cxx')
-rw-r--r--dwarf_wrappers.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwarf_wrappers.cxx b/dwarf_wrappers.cxx
index 93cb36a2..4fd074ed 100644
--- a/dwarf_wrappers.cxx
+++ b/dwarf_wrappers.cxx
@@ -42,5 +42,5 @@ void dwarf_assert(const string& desc, int rc)
void dwfl_assert(const std::string& desc, bool condition)
{
if (!condition)
- dwarf_assert(desc, -1);
+ dwfl_assert(desc, -1);
}