diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/klee-stats/klee-stats | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/klee-stats/klee-stats b/tools/klee-stats/klee-stats index 78b7b0cb..f68502f0 100755 --- a/tools/klee-stats/klee-stats +++ b/tools/klee-stats/klee-stats @@ -81,7 +81,7 @@ class LazyEvalList: def getLastRecord(self): try: - cursor = self.conn().execute("SELECT * FROM stats ORDER BY Instructions DESC LIMIT 1") + cursor = self.conn().execute("SELECT * FROM stats ORDER BY rowid DESC LIMIT 1") column_names = [description[0] for description in cursor.description] return dict(zip(column_names, cursor.fetchone())) except sqlite3.OperationalError as e: |