From c2581b3dabc520e9392e97ef6041ae928f99e927 Mon Sep 17 00:00:00 2001 From: Mark Wielaard Date: Wed, 24 Sep 2008 13:48:26 +0200 Subject: Correct dwfl_assert () implementation. --- dwarf_wrappers.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dwarf_wrappers.cxx') 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); } -- cgit