From a6daa554841217142e3b04080e49b2988055398e Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Wed, 27 Feb 2019 13:17:05 -0500 Subject: [PATCH] checkstack: Wrap code to 80 columns Signed-off-by: Kevin O'Connor --- scripts/checkstack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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():