diff options
Diffstat (limited to 'src/tools/vppapigen/vppapigen_c.py')
-rw-r--r-- | src/tools/vppapigen/vppapigen_c.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/vppapigen/vppapigen_c.py b/src/tools/vppapigen/vppapigen_c.py index b34d063c340..93d14f3f617 100644 --- a/src/tools/vppapigen/vppapigen_c.py +++ b/src/tools/vppapigen/vppapigen_c.py @@ -295,7 +295,7 @@ def version_tuple(s, module): # # Plugin entry point # -def run(input_filename, s, file_crc): +def run(input_filename, s): basename = os.path.basename(input_filename) filename, file_extension = os.path.splitext(basename) output = top_boilerplate.format(datestring=datestring, @@ -308,6 +308,6 @@ def run(input_filename, s, file_crc): output += endianfun(s['types'] + s['Define']) output += version_tuple(s, basename) output += bottom_boilerplate.format(input_filename=basename, - file_crc=file_crc) + file_crc=s['file_crc']) return output |