about summary refs log tree commit diff homepage
path: root/utils
diff options
context:
space:
mode:
authorTipwheal <674714966@qq.com>2019-01-06 21:36:10 +0800
committerMartinNowack <martin.nowack@gmail.com>2019-01-07 09:16:58 +0000
commitb845877a9d883636751d35ee96f2d4c14d57d5d6 (patch)
treee6b7fc9c698e01057229c0e19b478f7b1caeffd1 /utils
parent984e99d50dc906dfd7f503029964b771935714b0 (diff)
downloadklee-b845877a9d883636751d35ee96f2d4c14d57d5d6.tar.gz
fix a bug in a function call
the function name is "getTreeStream" but here's a spelling error
Diffstat (limited to 'utils')
-rw-r--r--utils/hacks/TreeGraphs/DumpTreeStream.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/hacks/TreeGraphs/DumpTreeStream.py b/utils/hacks/TreeGraphs/DumpTreeStream.py
index 0b3f0ee1..0fc6f36c 100644
--- a/utils/hacks/TreeGraphs/DumpTreeStream.py
+++ b/utils/hacks/TreeGraphs/DumpTreeStream.py
@@ -32,7 +32,7 @@ def getTreeStream(path):
     return paths
 
 def writeTreeStream(path, output):
-    paths = getTreeSTream(path)
+    paths = getTreeStream(path)
     print 'Writing %d paths'%len(paths)
     for i,data in paths.items():
         if i!=0: