From 515f2a216c6fcb17367b0b85ff7544600f1ebdd7 Mon Sep 17 00:00:00 2001 From: avolkov Date: Sun, 20 Dec 2009 02:18:01 +0000 Subject: [PATCH] Make audio_Object properly unsigned; also dodges compiler warning git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3453 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/libs/sound/audiocore.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc2/src/libs/sound/audiocore.h b/sc2/src/libs/sound/audiocore.h index fcb2349bb..48c8b940f 100644 --- a/sc2/src/libs/sound/audiocore.h +++ b/sc2/src/libs/sound/audiocore.h @@ -39,7 +39,7 @@ enum /* Interface Types */ -typedef intptr_t audio_Object; +typedef uintptr_t audio_Object; typedef intptr_t audio_IntVal; typedef const sint32 audio_SourceProp; typedef const sint32 audio_BufferProp;