Skip to content

Commit 0ae26ca

Browse files
HugoTrowill-v-pi
authored andcommitted
Fix semicolon in makefsdata.py (raspberrypi#2238)
Simple semicolon that breaks the file otherwise
1 parent 927825a commit 0ae26ca

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
@@ -95,7 +95,7 @@ def process_file_list(fd, input):
9595
fd.write(f"static const unsigned char {data_var}[] = {{\n")
9696
for entry in results:
9797
fd.write(f"\n /* {entry['comment']} */\n")
98-
byte_count = 0;
98+
byte_count = 0
9999
for b in entry['data']:
100100
if byte_count % 16 == 0:
101101
fd.write(" ")

0 commit comments

Comments
 (0)