aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/generic/libc-start.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/generic/libc-start.c b/sysdeps/generic/libc-start.c
index c6178d79af..351205d636 100644
--- a/sysdeps/generic/libc-start.c
+++ b/sysdeps/generic/libc-start.c
@@ -115,8 +115,8 @@ LIBC_START_MAIN (int (*main) (int, char **, char **
ElfW(auxv_t) *__unbounded auxvec;
{
char *__unbounded *__unbounded evp = ubp_ev;
- while (*evp != NULL)
- ++evp;
+ while (*evp++ != NULL)
+ ;
auxvec = (ElfW(auxv_t) *__unbounded) evp;
}
# endif