summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-10-26 21:30:25 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-10-26 21:30:25 -0400
commit0167e6da4c08602585217269f0a9485d534e77d7 (patch)
tree01e50616953b26b3fde3c5a96398020a878717c9 /tools
parent59ba4944e9764e62154f49e03b278358144a89bf (diff)
tools/notsd-fixup--includes: fix mucking with typedefs
Diffstat (limited to 'tools')
-rwxr-xr-xtools/notsd-fixup--includes2
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):