svn commit: r254513 - stable/9/include
Ed Maste
emaste at FreeBSD.org
Mon Aug 19 07:00:14 UTC 2013
Author: emaste
Date: Mon Aug 19 07:00:13 2013
New Revision: 254513
URL: http://svnweb.freebsd.org/changeset/base/254513
Log:
MFC r251192: Fix misspelling of structure field name.
Modified:
stable/9/include/stdatomic.h
Directory Properties:
stable/9/include/ (props changed)
Modified: stable/9/include/stdatomic.h
==============================================================================
--- stable/9/include/stdatomic.h Mon Aug 19 05:48:42 2013 (r254512)
+++ stable/9/include/stdatomic.h Mon Aug 19 07:00:13 2013 (r254513)
@@ -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-stable-9
mailing list