Fix bug in the mutex gdb printer.

This commit is contained in:
Gunnar Beutner 2013-09-02 15:12:04 +02:00
parent c552d79774
commit c81a88057c

View File

@ -43,7 +43,7 @@ class IcingaMutexPrinter:
if owner == 0:
return '<unlocked>'
else:
return '<locked by #' + owner + '>'
return '<locked by #' + str(owner) + '>'
def lookup_icinga_type(val):
t = val.type.unqualified()