diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-10-26 21:30:25 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-10-26 21:30:25 -0400 |
commit | 0167e6da4c08602585217269f0a9485d534e77d7 (patch) | |
tree | 01e50616953b26b3fde3c5a96398020a878717c9 /tools | |
parent | 59ba4944e9764e62154f49e03b278358144a89bf (diff) |
tools/notsd-fixup--includes: fix mucking with typedefs
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/notsd-fixup--includes | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/notsd-fixup--includes b/tools/notsd-fixup--includes index afd616534d..a636c78be6 100755 --- a/tools/notsd-fixup--includes +++ b/tools/notsd-fixup--includes @@ -209,7 +209,7 @@ class IncludeSection: b='\n' if len(self.typedef) > 0 and self.typedef_last: print(b, end='', file=file) - for line in sorted(set(self.typedef)): + for line in self.typedef: print(line, file=file) print(self.trailing_nl, end='', file=file) def add(self, group, path, extra): |