svn commit: r224543 - stable/8/sys/compat/freebsd32

Dmitry Morozovsky marck at FreeBSD.org
Sun Jul 31 08:52:25 UTC 2011


Author: marck (doc committer)
Date: Sun Jul 31 08:52:24 2011
New Revision: 224543
URL: http://svn.freebsd.org/changeset/base/224543

Log:
  MFC r224140:
  
    Correct small typo in a do{}while(0)
  
  Approved by:	kib

Modified:
  stable/8/sys/compat/freebsd32/freebsd32.h
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/compat/freebsd32/freebsd32.h
==============================================================================
--- stable/8/sys/compat/freebsd32/freebsd32.h	Sun Jul 31 08:13:25 2011	(r224542)
+++ stable/8/sys/compat/freebsd32/freebsd32.h	Sun Jul 31 08:52:24 2011	(r224543)
@@ -58,7 +58,7 @@ struct timespec32 {
 #define TS_CP(src,dst,fld) do {			\
 	CP((src).fld,(dst).fld,tv_sec);		\
 	CP((src).fld,(dst).fld,tv_nsec);	\
-} while (0);
+} while (0)
 
 struct rusage32 {
 	struct timeval32 ru_utime;


More information about the svn-src-all mailing list