From c81a88057c97d2abfbea08123e633276d9765df5 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Mon, 2 Sep 2013 15:12:04 +0200 Subject: [PATCH] Fix bug in the mutex gdb printer. --- contrib/gdb/icingadbg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/gdb/icingadbg.py b/contrib/gdb/icingadbg.py index e71ddba60..64ad2df8c 100644 --- a/contrib/gdb/icingadbg.py +++ b/contrib/gdb/icingadbg.py @@ -43,7 +43,7 @@ class IcingaMutexPrinter: if owner == 0: return '' else: - return '' + return '' def lookup_icinga_type(val): t = val.type.unqualified() -- 2.50.1