summaryrefslogtreecommitdiff
path: root/libs/appleutility/CoreAudio
diff options
context:
space:
mode:
authorAdrian Knoth <aknoth@google.com>2016-02-22 21:01:23 +0100
committerPaul Davis <paul@linuxaudiosystems.com>2016-02-22 15:13:01 -0500
commit6fa88273aa779be36dbe17f5d6c8566fcf22366b (patch)
treecfdf68331401ee0b7317ea23fadd671b644539f2 /libs/appleutility/CoreAudio
parent53f1981effd149c13f452e8122bca1992792df83 (diff)
Spelling correction patch from Debian
Patch taken (and forward-ported to HEAD) from <https://anonscm.debian.org/cgit/pkg-multimedia/ardour.git/plain/debian/patches/0100-fix-typos.patch>
Diffstat (limited to 'libs/appleutility/CoreAudio')
-rw-r--r--libs/appleutility/CoreAudio/PublicUtility/CAAtomic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/appleutility/CoreAudio/PublicUtility/CAAtomic.h b/libs/appleutility/CoreAudio/PublicUtility/CAAtomic.h
index c9a611bf7a..2a44868f72 100644
--- a/libs/appleutility/CoreAudio/PublicUtility/CAAtomic.h
+++ b/libs/appleutility/CoreAudio/PublicUtility/CAAtomic.h
@@ -80,7 +80,7 @@ inline SInt32 CAAtomicAdd32Barrier(SInt32 theAmt, volatile SInt32* theValue)
#if TARGET_OS_WIN32
long lRetVal = InterlockedExchangeAdd((volatile long*)theValue, theAmt);
// InterlockedExchangeAdd returns the original value which differs from OSX version.
- // At this point the addition would have occured and hence returning the new value
+ // At this point the addition would have occurred and hence returning the new value
// to keep it sync with OSX.
return lRetVal + theAmt;
#else