aboutsummaryrefslogtreecommitdiffstats
path: root/tools/make-plugin-reg.py
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-12-19 15:08:03 +0000
committerJoão Valverde <j@v6e.pt>2017-12-19 15:39:57 +0000
commit12e25c1a86d5a4b67213af89fa3b2d6a0bcaa634 (patch)
tree517677bf6fe65b38356f4ea510c1cf892930bcc6 /tools/make-plugin-reg.py
parent106e0b4ee0b5bac403a174aff7266d17c7b1b43e (diff)
plugin: fix extra ';' outside of a function [-Wextra-semi]
Change-Id: I923e4a4f84e8786523333daf372fc5d7cc7ad729 Reviewed-on: https://code.wireshark.org/review/24897 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'tools/make-plugin-reg.py')
-rwxr-xr-xtools/make-plugin-reg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/make-plugin-reg.py b/tools/make-plugin-reg.py
index 420299ec56..63e0c0609b 100755
--- a/tools/make-plugin-reg.py
+++ b/tools/make-plugin-reg.py
@@ -142,7 +142,7 @@ else:
reg_code += " plug_%s.register_wtap_module = wtap_register_%s;\n" % (symbol, symbol)
reg_code += " wtap_register_plugin(&plug_%s);\n" % (symbol)
-reg_code += "};\n"
+reg_code += "}\n"
try:
print(('Updating ' + final_filename))