misplaced & in times() made it fail to work, and clobber the stack
[musl] / src / time / times.c
index e9b5a82..d63cd20 100644 (file)
@@ -3,5 +3,5 @@
 
 clock_t times(struct tms *tms)
 {
-       return syscall1(__NR_times, (long)&tms);
+       return syscall1(__NR_times, (long)tms);
 }