From 1f953c9fb595359d0c452e1bc3b0b31aba5ac586 Mon Sep 17 00:00:00 2001 From: RJ Ryan Date: Tue, 24 Feb 2015 14:56:53 -0500 Subject: [PATCH] Fix typo. --- src/sampleutil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sampleutil.cpp b/src/sampleutil.cpp index 818bdd9246a..0a8286fda10 100644 --- a/src/sampleutil.cpp +++ b/src/sampleutil.cpp @@ -59,7 +59,7 @@ CSAMPLE* SampleUtil::alloc(int size) { } // Shift void* pAligned = (void*)(((size_t)pUnaligned & ~(alignment - 1)) + alignment); - // Store pointer to the original buffer in the slack spcae before the + // Store pointer to the original buffer in the slack space before the // shifted pointer. *((void**)(pAligned) - 1) = pUnaligned; return static_cast(pAligned);