diff options
| author | Julgodis <> | 2021-01-29 23:17:11 +0100 |
|---|---|---|
| committer | Julgodis <> | 2021-01-29 23:17:11 +0100 |
| commit | b8c7b9ce3beaadcd08f5c97cb48b3230b999912a (patch) | |
| tree | a014f24c2e22ddb8f525e4c93565b9dc3957521d /tools/section2cpp.py | |
| parent | 77adc39ffe9ff8719608186f7d89e1b6abaacf2c (diff) | |
fix padding
Diffstat (limited to 'tools/section2cpp.py')
| -rw-r--r-- | tools/section2cpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/section2cpp.py b/tools/section2cpp.py index 0d1086fce8..1187abc8fa 100644 --- a/tools/section2cpp.py +++ b/tools/section2cpp.py @@ -562,7 +562,7 @@ def output_cpp(): if padding: padding_label = "lbl_%s" % (hex(symbol.addr + symbol.size).upper()[2:]) - literals += [ ArrayLiteral(padding_label, data, "padding") ] + literals += [ ArrayLiteral(padding_label, padding, "padding") ] for lit in literals: print(lit) |
