aboutsummaryrefslogtreecommitdiffstats
path: root/src/amd
diff options
context:
space:
mode:
Diffstat (limited to 'src/amd')
-rw-r--r--src/amd/common/sid_tables.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/common/sid_tables.py b/src/amd/common/sid_tables.py
index 4e53acefa44..ca90f82535d 100644
--- a/src/amd/common/sid_tables.py
+++ b/src/amd/common/sid_tables.py
@@ -65,7 +65,7 @@ class StringTable:
fragments = [
'"%s\\0" /* %s */' % (
te[0].encode('string_escape'),
- ', '.join(str(idx) for idx in te[2])
+ ', '.join(str(idx) for idx in sorted(te[2]))
)
for te in self.table
]