Skip to content

Commit 71aab45

Browse files
committed
Flake
1 parent f4f98e6 commit 71aab45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/building.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ def llvm_nm_multiple(files):
390390
break
391391
colon = results.rfind(':', i, nl)
392392
if colon >= 0 and results[colon + 1] == '\n': # New file start?
393-
nm_cache[filename] = parse_symbols(results[file_start:i-1])
393+
nm_cache[filename] = parse_symbols(results[file_start:i - 1])
394394
filename = results[i:colon].strip()
395395
file_start = colon + 2
396396
i = nl + 1

0 commit comments

Comments
 (0)