Skip to content

Commit 197eefe

Browse files
authored
Fix semicolon in makefsdata.py
Simple semicolon that breaks the file otherwise
1 parent 95ea6ac commit 197eefe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rp2_common/pico_lwip/tools/makefsdata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def process_file_list(fd, input):
9494
fd.write(f"static const unsigned char {data_var}[] = {{\n")
9595
for entry in results:
9696
fd.write(f"\n /* {entry['comment']} */\n")
97-
byte_count = 0;
97+
byte_count = 0
9898
for b in entry['data']:
9999
if byte_count % 16 == 0:
100100
fd.write(" ")

0 commit comments

Comments
 (0)