svn commit: r253525 - head/sys/compat/freebsd32

Konstantin Belousov kib at FreeBSD.org
Sun Jul 21 19:17:47 UTC 2013


Author: kib
Date: Sun Jul 21 19:17:46 2013
New Revision: 253525
URL: http://svnweb.freebsd.org/changeset/base/253525

Log:
  Cosmetic change, use the same union name on the left and right sides
  of the conversion.
  
  Tested by:	Petr Salinger <Petr.Salinger at seznam.cz>
  Sponsored by:	The FreeBSD Foundation
  MFC after:	1 week

Modified:
  head/sys/compat/freebsd32/freebsd32_misc.c

Modified: head/sys/compat/freebsd32/freebsd32_misc.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_misc.c	Sun Jul 21 17:23:49 2013	(r253524)
+++ head/sys/compat/freebsd32/freebsd32_misc.c	Sun Jul 21 19:17:46 2013	(r253525)
@@ -2410,7 +2410,7 @@ siginfo_to_siginfo32(const siginfo_t *sr
 	dst->si_uid = src->si_uid;
 	dst->si_status = src->si_status;
 	dst->si_addr = (uintptr_t)src->si_addr;
-	dst->si_value.sigval_int = src->si_value.sival_int;
+	dst->si_value.sival_int = src->si_value.sival_int;
 	dst->si_timerid = src->si_timerid;
 	dst->si_overrun = src->si_overrun;
 }


More information about the svn-src-head mailing list