Date: Fri, 18 Aug 2006 07:36:12 GMT From: Roman Divacky <rdivacky@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 104461 for review Message-ID: <200608180736.k7I7aCvV059839@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=104461 Change 104461 by rdivacky@rdivacky_witten on 2006/08/18 07:36:06 Make buildable on amd64. Submitted by: netchild Affected files ... .. //depot/projects/soc2006/rdivacky_linuxolator/compat/linux/linux_futex.c#30 edit Differences ... ==== //depot/projects/soc2006/rdivacky_linuxolator/compat/linux/linux_futex.c#30 (text+ko) ==== @@ -147,9 +147,10 @@ #ifdef DEBUG if (ldebug(sys_futex)) printf("FUTEX_WAIT %d: val = %d, uaddr = %p, " - "*uaddr = %d, timeout = %d.%09ld\n", + "*uaddr = %d, timeout = %d.%09lu\n", td->td_proc->p_pid, args->val, - args->uaddr, val, timeout.tv_sec, timeout.tv_nsec); + args->uaddr, val, timeout.tv_sec, + (unsigned long) timeout.tv_nsec); #endif tv.tv_usec = timeout.tv_sec * 1000000 + timeout.tv_nsec / 1000; timeout_hz = tvtohz(&tv);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200608180736.k7I7aCvV059839>