Bug in RegexKitPrivateAtomic.h on GNUstep/Ubuntu
Status: Beta
Brought to you by:
jengelhart
Found this little bug trying to get RegexKit to compile with GNUstep on Ubuntu.
In Source/Headers/RegexKit/RegexKitPrivateAtomic.h at line 167:
#define RKAtomicCompareAndSwapPtr(oldp, newp, ptr) __sync_bool_compare_and_swap(ptr, oldValue, newValue)
should be:
#define RKAtomicCompareAndSwapPtr(oldValue, newValue, ptr) __sync_bool_compare_and_swap(ptr, oldValue, newValue)
Svn diff for patch attached.
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
Patch for fix
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"