Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 31 Jul 2011 08:52:25 +0000 (UTC)
From:      Dmitry Morozovsky <marck@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r224543 - stable/8/sys/compat/freebsd32
Message-ID:  <201107310852.p6V8qPRZ037310@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201107310852.p6V8qPRZ037310>