From: Rich Felker Date: Sun, 13 Mar 2011 03:53:17 +0000 (-0500) Subject: misplaced & in times() made it fail to work, and clobber the stack X-Git-Tag: v0.7.1~16 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=eff62b8a96dbbffa16648048ac684c9042751fe2;p=oweals%2Fmusl.git misplaced & in times() made it fail to work, and clobber the stack --- diff --git a/src/time/times.c b/src/time/times.c index e9b5a823..d63cd203 100644 --- a/src/time/times.c +++ b/src/time/times.c @@ -3,5 +3,5 @@ clock_t times(struct tms *tms) { - return syscall1(__NR_times, (long)&tms); + return syscall1(__NR_times, (long)tms); }