Author: marck (doc committer)
Date: Sun Jul 17 17:12:17 2011
New Revision: 224140
URL: http://svn.freebsd.org/changeset/base/224140

Log:
  Correct small typo in a do{}while(0) define
  
  Approved by:  kib
  MFC after:    2 weeks

Modified:
  head/sys/compat/freebsd32/freebsd32.h

Modified: head/sys/compat/freebsd32/freebsd32.h
==============================================================================
--- head/sys/compat/freebsd32/freebsd32.h       Sun Jul 17 16:50:12 2011        
(r224139)
+++ head/sys/compat/freebsd32/freebsd32.h       Sun Jul 17 17:12:17 2011        
(r224140)
@@ -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;
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to