diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-03-16 13:31:20 +0000 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-03-17 08:22:36 +0100 |
commit | 0c7009e751a5c8b3c5f73ac42fad5b4954206fc1 (patch) | |
tree | 96f93b5bfa98302eaf15ca76345dbf378aa12681 /compilerplugins | |
parent | 218916eb47e35fd14832d8f52225bf1d4d9c80a6 (diff) |
Fix typo
Change-Id: I6f86a9f44e6d0044b66a6552fb9c1dbf21a1803c
Reviewed-on: https://gerrit.libreoffice.org/69359
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'compilerplugins')
-rwxr-xr-x | compilerplugins/clang/pahole-all-classes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compilerplugins/clang/pahole-all-classes.py b/compilerplugins/clang/pahole-all-classes.py index 088e9cad2949..ec8d20e767e7 100755 --- a/compilerplugins/clang/pahole-all-classes.py +++ b/compilerplugins/clang/pahole-all-classes.py @@ -113,7 +113,7 @@ for line in read_generator(): # re-organising them can make them much less readable. if foundHole and len(structLines) < 12 and structSize < 100 and not foundBogusLine: # Verify that we have enough hole-space that removing it will result in a structure - # that still satifies alignment requirements, otherwise the compiler will just put empty + # that still satisfies alignment requirements, otherwise the compiler will just put empty # space at the end of the struct. # TODO improve detection of the required alignment for a structure potentialSpace = (cumulativeHoleBits / 8) + (sizeOfFields - structSize) @@ -130,4 +130,4 @@ for line in read_generator(): foundBogusLine = False actualStructSize = 0 -gdbProc.terminate()
\ No newline at end of file +gdbProc.terminate() |