diff options
author | David 'Digit' Turner <digit@google.com> | 2011-01-11 17:23:10 +0100 |
---|---|---|
committer | David 'Digit' Turner <digit@google.com> | 2011-01-11 17:23:10 +0100 |
commit | b969b5a32a3924412b3584a2ab606ff64a3c4203 (patch) | |
tree | 941676f6fdb4fe7a7da090e12bcab939208e5c8a /libc/kernel/tools | |
parent | 43164fcbdf9fb47768df07ee73da56413200f971 (diff) | |
download | bionic-b969b5a32a3924412b3584a2ab606ff64a3c4203.zip bionic-b969b5a32a3924412b3584a2ab606ff64a3c4203.tar.gz bionic-b969b5a32a3924412b3584a2ab606ff64a3c4203.tar.bz2 |
libc: fix kernel cleanup script typo.
Change-Id: I5fc119be535ed47dadc780234665335efa6b9ac5
Diffstat (limited to 'libc/kernel/tools')
-rw-r--r-- | libc/kernel/tools/defaults.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/kernel/tools/defaults.py b/libc/kernel/tools/defaults.py index ca7e6bb..5e9d6770 100644 --- a/libc/kernel/tools/defaults.py +++ b/libc/kernel/tools/defaults.py @@ -45,7 +45,7 @@ kernel_default_arch_macros = { # Replace tokens in the output according to this mapping kernel_token_replacements = { - {"asm": "__asm__"}, + "asm": "__asm__", } # this is the set of known static inline functions that we want to keep |