aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-02-27 13:17:05 -0500
committerKevin O'Connor <kevin@koconnor.net>2019-02-27 13:17:05 -0500
commita6daa554841217142e3b04080e49b2988055398e (patch)
tree5af9a6c3d9c9543f3278d48b275dda7d586c747c /scripts
parent060757764a7275b63bd2cfb21a5dc0330042588c (diff)
downloadkutter-a6daa554841217142e3b04080e49b2988055398e.tar.gz
kutter-a6daa554841217142e3b04080e49b2988055398e.tar.xz
kutter-a6daa554841217142e3b04080e49b2988055398e.zip
checkstack: Wrap code to 80 columns
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/checkstack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkstack.py b/scripts/checkstack.py
index ed0689ea..1a6605fe 100755
--- a/scripts/checkstack.py
+++ b/scripts/checkstack.py
@@ -210,7 +210,7 @@ def main():
eventfunc = funcsbyname.get('__vector_13', funcsbyname.get('__vector_17'))
for funcnameroot, info in funcsbyname.items():
if funcnameroot.endswith('_event') and eventfunc is not None:
- eventfunc.noteCall(0, info.funcaddr, eventfunc.basic_stack_usage + 2)
+ eventfunc.noteCall(0, info.funcaddr, eventfunc.basic_stack_usage+2)
# Calculate maxstackusage
for info in funcs.values():