commit | edb21c4edc92dddca238bce3f3c17704f562c93b | [log] [tgz] |
---|---|---|
author | Sjoerd Mullender <sjoerd@acm.org> | Tue Aug 29 14:22:16 1995 +0000 |
committer | Sjoerd Mullender <sjoerd@acm.org> | Tue Aug 29 14:22:16 1995 +0000 |
tree | 43a94c3f2cf35e25e470ce096b4441df2491df56 | |
parent | 4549b137e3aab0728d679f3aee76f000e4894b7c [diff] |
Fixed typo: == -> =.
diff --git a/Tools/scripts/fixcid.py b/Tools/scripts/fixcid.py index 3b37bb8..c1df5f3 100755 --- a/Tools/scripts/fixcid.py +++ b/Tools/scripts/fixcid.py
@@ -292,7 +292,7 @@ words = string.split(line[:i]) if not words: continue if len(words) == 3 and words[0] == 'struct': - words[:2] == [words[0] + ' ' + words[1]] + words[:2] = [words[0] + ' ' + words[1]] elif len(words) <> 2: err(substfile + ':' + `lineno` + ': warning: bad line: ' + line)