diff --git a/YampaSynth.cabal b/YampaSynth.cabal
--- a/YampaSynth.cabal
+++ b/YampaSynth.cabal
@@ -1,5 +1,5 @@
 name: YampaSynth
-version: 0.1.1
+version: 0.1.2
 cabal-Version: >= 1.2
 license: BSD3
 license-file: LICENSE
diff --git a/src/Player/OpenAL.hs b/src/Player/OpenAL.hs
--- a/src/Player/OpenAL.hs
+++ b/src/Player/OpenAL.hs
@@ -117,7 +117,7 @@
 process :: (Chunkable a) => Int -> Source -> [Buffer] -> [Buffer] -> MVar (Maybe (Chunk a)) -> MVar () -> IO ()
 process sampleRate' pSource freeBuffers usedBuffers mVarMaybeChunk mVarReply = do
   mChunk <- takeMVar mVarMaybeChunk
-  void $ reply mChunk (\chunk -> do
+  Foreign.void $ reply mChunk (\chunk -> do
     mInd <- lastInd (/= 0) chunk -- we aren't sent chunks with leading zeros
     (f,u) <- reply mInd (\ind -> do  
       (buff,newFree,newUsed) <- if null freeBuffers 
