Fix semicolon in makefsdata.py (#2238)

Simple semicolon that breaks the file otherwise
This commit is contained in:
HugoTro 2025-02-11 23:39:14 +01:00 committed by GitHub
parent f407f5b8e8
commit 24c4480b82
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -95,7 +95,7 @@ def process_file_list(fd, input):
fd.write(f"static const unsigned char {data_var}[] = {{\n")
for entry in results:
fd.write(f"\n /* {entry['comment']} */\n")
byte_count = 0;
byte_count = 0
for b in entry['data']:
if byte_count % 16 == 0:
fd.write(" ")