diff --git a/src/mapi/new/genCommon.py b/src/mapi/new/genCommon.py index b0925d80151..ec48d522c05 100644 --- a/src/mapi/new/genCommon.py +++ b/src/mapi/new/genCommon.py @@ -74,6 +74,9 @@ def getFunctionsFromRoots(roots): for i in range(len(functions)): functions[i] = functions[i]._replace(slot=i) + # Sort the function list by slot.... to simplify the diff + functions = sorted(functions, key=lambda f: f.slot) + return functions def getExportNamesFromRoots(target, roots):