svn commit: r251192 - head/include

Ed Schouten ed at FreeBSD.org
Fri May 31 20:07:27 UTC 2013


Author: ed
Date: Fri May 31 20:07:26 2013
New Revision: 251192
URL: http://svnweb.freebsd.org/changeset/base/251192

Log:
  Fix misspelling of structure field name.

Modified:
  head/include/stdatomic.h

Modified: head/include/stdatomic.h
==============================================================================
--- head/include/stdatomic.h	Fri May 31 19:13:22 2013	(r251191)
+++ head/include/stdatomic.h	Fri May 31 20:07:26 2013	(r251192)
@@ -123,7 +123,7 @@ enum memory_order {
 
 #if defined(__CLANG_ATOMICS) || defined(__GNUC_ATOMICS)
 #define	atomic_is_lock_free(obj) \
-	__atomic_is_lock_free(sizeof((obj)->__val), &(obj)->val)
+	__atomic_is_lock_free(sizeof((obj)->__val), &(obj)->__val)
 #else
 #define	atomic_is_lock_free(obj) \
 	((void)(obj), sizeof((obj)->__val) <= sizeof(void *))


More information about the svn-src-all mailing list