Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit edb21c4

Browse files
Fixed typo: == -> =.
1 parent 4549b13 commit edb21c4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tools/scripts/fixcid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def addsubst(substfile):
292292
words = string.split(line[:i])
293293
if not words: continue
294294
if len(words) == 3 and words[0] == 'struct':
295-
words[:2] == [words[0] + ' ' + words[1]]
295+
words[:2] = [words[0] + ' ' + words[1]]
296296
elif len(words) <> 2:
297297
err(substfile + ':' + `lineno` +
298298
': warning: bad line: ' + line)

0 commit comments

Comments
 (0)