diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-24 19:18:39 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-24 19:18:39 +0000 |
commit | 2482426ea23ce69c7ef7873662ccd7054ca802a0 (patch) | |
tree | 42426b7e1ebca91f42165c2e8c9684cc0c6d089f /tools/linux | |
parent | 21843c0d7a63f37cd7218263a35cec559197f92d (diff) | |
download | chromium_src-2482426ea23ce69c7ef7873662ccd7054ca802a0.zip chromium_src-2482426ea23ce69c7ef7873662ccd7054ca802a0.tar.gz chromium_src-2482426ea23ce69c7ef7873662ccd7054ca802a0.tar.bz2 |
Tweak to make the tools/linux/dump-static-initializers.py diffable output more readable.
BUG=none
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10445008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138854 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/linux')
-rwxr-xr-x | tools/linux/dump-static-initializers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/linux/dump-static-initializers.py b/tools/linux/dump-static-initializers.py index c5ff1f8..865559b 100755 --- a/tools/linux/dump-static-initializers.py +++ b/tools/linux/dump-static-initializers.py @@ -214,7 +214,7 @@ def main(): ref_output.append(ref) if opts.diffable: - print '\n'.join('# ' + qualified_filename + r for r in ref_output) + print '\n'.join('# ' + qualified_filename + ' ' + r for r in ref_output) else: print '%s (initializer offset 0x%x size 0x%x)' % (qualified_filename, addr, size) |