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>
This commit is contained in:
Alexis La Goutte 2017-12-19 15:08:03 +00:00 committed by João Valverde
parent 106e0b4ee0
commit 12e25c1a86

View File

@ -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))