diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-04-06 22:32:05 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-04-07 10:15:51 +0000 |
commit | caf388959576da4f480b8c97443cb052f6201a33 (patch) | |
tree | 78f1f70c3cdcbbabea37371a40e066843f969f10 /compilerplugins | |
parent | a2a4fa446f46da0d58635412d2f2ad1e3f31cbc9 (diff) |
Fix typos
Change-Id: Ibad3f8e9f55af5e652b6be198bebace2b1bfb35b
Reviewed-on: https://gerrit.libreoffice.org/36235
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'compilerplugins')
-rwxr-xr-x | compilerplugins/clang/constantparam.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/constantparam.py b/compilerplugins/clang/constantparam.py index 5550c51c34f3..2dede4f1ad8d 100755 --- a/compilerplugins/clang/constantparam.py +++ b/compilerplugins/clang/constantparam.py @@ -72,7 +72,7 @@ with open("loplugin.constantparam.report", "wt") as f: # take bitmask parameters where one or more of the bits in the # bitmask is always one or always zero -# integer to hext str +# integer to hex str def hex(i): return "0x%x" % i # I can't use python's ~ operator, because that produces negative numbers |