diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2018-07-17 07:36:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-17 07:36:41 +0200 |
| commit | 85904f4c55e171dec36aadc14f78113d169f6edc (patch) | |
| tree | 5f8bcb790d9586db598f72b514f175fb0b6fbabd /miasm2/core/asmblock.py | |
| parent | 35074d6565d53f6f655af1a101e51ace1015290b (diff) | |
| parent | ef008bba8b0f011bb3777ac3f8301ea4d7990d73 (diff) | |
| download | miasm-85904f4c55e171dec36aadc14f78113d169f6edc.tar.gz miasm-85904f4c55e171dec36aadc14f78113d169f6edc.zip | |
Merge pull request #801 from commial/fix/jitter-fixes
Fix/jitter fixes
Diffstat (limited to 'miasm2/core/asmblock.py')
| -rw-r--r-- | miasm2/core/asmblock.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/core/asmblock.py b/miasm2/core/asmblock.py index c8af4056..2f16543f 100644 --- a/miasm2/core/asmblock.py +++ b/miasm2/core/asmblock.py @@ -153,7 +153,7 @@ class AsmBlock(object): lbls.append("Unknown? ") else: lbls.append(dst.to_string(loc_db) + " ") - lbls = '\t'.join(lbls) + lbls = '\t'.join(sorted(lbls)) out.append(lbls) return '\n'.join(out) |