diff --git a/tools/performance-log-viewer.py b/tools/performance-log-viewer.py index 8f96c1c111..8e87eb8027 100755 --- a/tools/performance-log-viewer.py +++ b/tools/performance-log-viewer.py @@ -1687,7 +1687,7 @@ class MarkersViewer (Gtk.ScrolledWindow): DESC = 2 def __init__ (self): - Gtk.ListStore.__init__ (self, int, int, str) + Gtk.ListStore.__init__ (self, int, GObject.TYPE_INT64, str) for marker in markers: self.append ((marker.id, marker.t, marker.description))