aboutsummaryrefslogtreecommitdiffstats
path: root/linker
diff options
context:
space:
mode:
authorDoug Kwan <dougkwan@google.com>2010-01-25 11:09:31 -0800
committerDoug Kwan <dougkwan@google.com>2010-01-25 11:09:31 -0800
commit90f82e5868de5a30d4842951b80be0c8a9cedc6d (patch)
treed49763a7763995fd772560acffd074ee1dc7710e /linker
parent1a2917ca954f575cc9698c99e54bd93087793c8f (diff)
downloadandroid_bionic-90f82e5868de5a30d4842951b80be0c8a9cedc6d.tar.gz
android_bionic-90f82e5868de5a30d4842951b80be0c8a9cedc6d.tar.bz2
android_bionic-90f82e5868de5a30d4842951b80be0c8a9cedc6d.zip
Fix typo in a comment.
Diffstat (limited to 'linker')
-rw-r--r--linker/Android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/linker/Android.mk b/linker/Android.mk
index c6fb49d28..19a68a0dc 100644
--- a/linker/Android.mk
+++ b/linker/Android.mk
@@ -14,7 +14,7 @@ ifeq ($(TARGET_ARCH),sh)
LINKER_TEXT_BASE := 0x70000100
else
# This is aligned to 4K page boundary so that both GNU ld and gold work. Gold
-# actually produces a correct binary with starting adding 0xB0000100 but the
+# actually produces a correct binary with starting address 0xB0000100 but the
# extra objcopy step to rename symbols causes the resulting binary to be misaligned
# and unloadable. Increasing the alignment adds an extra 3840 bytes in padding
# but switching to gold saves about 1M of space.