mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-12-10 07:14:36 +01:00
Fix semicolon in makefsdata.py (#2238)
Simple semicolon that breaks the file otherwise
This commit is contained in:
parent
f407f5b8e8
commit
24c4480b82
1 changed files with 1 additions and 1 deletions
|
|
@ -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(" ")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue