Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 31 Jul 2011 08:53:59 +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-7@freebsd.org
Subject:   svn commit: r224544 - stable/7/sys/compat/freebsd32
Message-ID:  <201107310853.p6V8rxVE037389@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marck (doc committer)
Date: Sun Jul 31 08:53:59 2011
New Revision: 224544
URL: http://svn.freebsd.org/changeset/base/224544

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

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

Modified: stable/7/sys/compat/freebsd32/freebsd32.h
==============================================================================
--- stable/7/sys/compat/freebsd32/freebsd32.h	Sun Jul 31 08:52:24 2011	(r224543)
+++ stable/7/sys/compat/freebsd32/freebsd32.h	Sun Jul 31 08:53:59 2011	(r224544)
@@ -54,7 +54,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?201107310853.p6V8rxVE037389>