summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2019-03-21 08:27:20 +0100
committerDaniel Friesel <derf@finalrewind.org>2019-03-21 08:27:20 +0100
commitd09e371e5dc861aeb7407d05e5c58b28ed15e4ad (patch)
tree5479856d6ebe0f287e9dce10d7701f9c4d3c4bb3 /lib
parent62e8a984b55155efead1f947bd72433649be9113 (diff)
TimingAnalysis: Add missing newline in macro definition
Diffstat (limited to 'lib')
-rw-r--r--lib/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils.py b/lib/utils.py
index c53d531..8b0eab5 100644
--- a/lib/utils.py
+++ b/lib/utils.py
@@ -182,7 +182,7 @@ class TimingAnalysis:
ret += 'counter.start(); '
ret += 'functioncall; '
ret += 'counter.stop();'
- ret += 'kout << endl << index << " :: " << counter.value << "/" << counter.overflow << endl;'
+ ret += 'kout << endl << index << " :: " << counter.value << "/" << counter.overflow << endl;\n'
return ret
def wrap_codeblock(self, codeblock):