Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 Aug 2006 11:18:17 GMT
From:      Roman Divacky <rdivacky@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 104540 for review
Message-ID:  <200608191118.k7JBIH68044347@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=104540

Change 104540 by rdivacky@rdivacky_witten on 2006/08/19 11:18:11

	Be like src.

Affected files ...

.. //depot/projects/soc2006/rdivacky_linuxolator/compat/linux/linux_futex.c#32 edit

Differences ...

==== //depot/projects/soc2006/rdivacky_linuxolator/compat/linux/linux_futex.c#32 (text+ko) ====

@@ -149,8 +149,8 @@
    			printf("FUTEX_WAIT %d: val = %d, uaddr = %p, "
 		    		"*uaddr = %d, timeout = %d.%09lu\n", 
 		    		td->td_proc->p_pid, args->val, 
-		    		args->uaddr, val, timeout.tv_sec, 
-				(unsigned long) 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?200608191118.k7JBIH68044347>