Skip to content

Instantly share code, notes, and snippets.

@gcatlin
Created December 29, 2011 15:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gcatlin/1534617 to your computer and use it in GitHub Desktop.
Save gcatlin/1534617 to your computer and use it in GitHub Desktop.
qcachegrind fix
--- a/libviews/callgraphview.cpp (revision 1261034)
+++ b/libviews/callgraphview.cpp (revision 1261035)
@@ -913,7 +913,7 @@
if (s[0] != 'F')
return 0;
bool ok;
- TraceFunction* f = (TraceFunction*) s.mid(1).toUInt(&ok, 16);
+ TraceFunction* f = (TraceFunction*) s.mid(1).toULongLong(&ok, 16);
if (!ok)
return 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment