mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-21 15:48:02 +00:00
fix typo in data percent warning message
This commit is contained in:
parent
6ba460e766
commit
3aeff5504c
@ -37,7 +37,7 @@ def printsizes(stream):
|
||||
print("%d bytes of .data, %d bytes of .bss, %d bytes of .noinit (%d %%)"
|
||||
%(datalen,bsslen,noinitlen,dataperc));
|
||||
if dataperc>80:
|
||||
print("WARNING: %d percent of code is used!"%codeperc);
|
||||
print("WARNING: %d percent of data is used!"%dataperc);
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
Loading…
Reference in New Issue
Block a user