From 84ff130e1815cf6ba0617bf56c0aa9b6ee8539e2 Mon Sep 17 00:00:00 2001 From: Ell Date: Fri, 6 Mar 2020 12:34:35 +0200 Subject: [PATCH] tools: in performance-log-viewer.py, handle markers with > INT_MAX timestamps --- tools/performance-log-viewer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))