summaryrefslogtreecommitdiff
path: root/util/plot_gen.py
diff options
context:
space:
mode:
Diffstat (limited to 'util/plot_gen.py')
-rwxr-xr-xutil/plot_gen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/plot_gen.py b/util/plot_gen.py
index b96382d..2ae03ef 100755
--- a/util/plot_gen.py
+++ b/util/plot_gen.py
@@ -48,7 +48,7 @@ if __name__ == "__main__":
if "nano" in header_names[1]:
unit = r"$\mu s$"
- time_data = map(lambda x: x[1]/1000, data)
+ time_data = map(lambda x: x[1]//1000, data)
else:
unit = r"ms"
time_data = map(itemgetter(1), data)