summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-04-07 15:20:11 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2018-04-23 10:17:50 +0200
commit6e3db40b8bccc13b106b63de31de1b8d7b9348cb (patch)
tree2a6c377fe5b7c084ae62a9cb20ab17450c2c0666 /bin
parent5c961a0412467d444dc7bc92a4573f1769b7dc53 (diff)
Fix typo in variable
Change-Id: I9ff961e9d6558478e72098a74048a5957299a953 Reviewed-on: https://gerrit.libreoffice.org/52547 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/find-unneeded-includes2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/find-unneeded-includes b/bin/find-unneeded-includes
index 9723ceffbfb9..de91a3570231 100755
--- a/bin/find-unneeded-includes
+++ b/bin/find-unneeded-includes
@@ -117,7 +117,7 @@ def processIWYUOutput(iwyuOutput, moduleRules):
match = re.match("(.*) should add these lines:$", line)
if match:
- currrentFileName = match.group(1)
+ currentFileName = match.group(1)
inAdd = True
continue