aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2010-07-08 15:38:13 -0700
committerAndroid Code Review <code-review@android.com>2010-07-08 15:38:13 -0700
commitfc6d95b10e7629f61013d221cbc1cdbff0190ac0 (patch)
treeb8c2c5a7e8518984f695e5c0072f5463713fdece
parent16984423bc67cd334d74b585bac2c01e44583624 (diff)
parent2bf607d599b703604cb1caf5beeb2e70c44682fb (diff)
downloadbionic-fc6d95b10e7629f61013d221cbc1cdbff0190ac0.tar.gz
Merge "Change-Id: I68cc462aeb2460345a53bdb9941ce4bfc10456fb bionic: fix clearenv() compiler warning and related comment typos"
-rw-r--r--libc/bionic/clearenv.c8
-rw-r--r--libc/bionic/libc_init_common.c2
-rw-r--r--libc/bionic/libc_init_dynamic.c2
3 files changed, 6 insertions, 6 deletions
diff --git a/libc/bionic/clearenv.c b/libc/bionic/clearenv.c
index ffc58d9fe..9a3b2a1d9 100644
--- a/libc/bionic/clearenv.c
+++ b/libc/bionic/clearenv.c
@@ -30,10 +30,10 @@ extern char** environ;
int clearenv(void)
{
- char **P = environ;
- int offset;
+ char **P;
- for (P = &environ[offset]; *P; ++P)
+ for (P = environ; *P; ++P)
*P = 0;
- return 0;
+
+ return 0;
}
diff --git a/libc/bionic/libc_init_common.c b/libc/bionic/libc_init_common.c
index d78d673f0..dd6e027f8 100644
--- a/libc/bionic/libc_init_common.c
+++ b/libc/bionic/libc_init_common.c
@@ -62,7 +62,7 @@ void __libc_init_common(uintptr_t *elfdata)
static pthread_internal_t thread;
static void* tls_area[BIONIC_TLS_SLOTS];
- /* setup pthread runtime and maint thread descriptor */
+ /* setup pthread runtime and main thread descriptor */
unsigned stacktop = (__get_sp() & ~(PAGE_SIZE - 1)) + PAGE_SIZE;
unsigned stacksize = 128 * 1024;
unsigned stackbottom = stacktop - stacksize;
diff --git a/libc/bionic/libc_init_dynamic.c b/libc/bionic/libc_init_dynamic.c
index 682ebcfd3..97e80eaec 100644
--- a/libc/bionic/libc_init_dynamic.c
+++ b/libc/bionic/libc_init_dynamic.c
@@ -61,7 +61,7 @@ void __attribute__((constructor)) __libc_prenit(void);
void __libc_prenit(void)
{
- /* Read the ELF data pointer form a special slot of the
+ /* Read the ELF data pointer from a special slot of the
* TLS area, then call __libc_init_common with it.
*
* Note that: