From 1e5c80c0857f2c5ccc6319c27e0ebe1bd4e54bb5 Mon Sep 17 00:00:00 2001 From: meep-eep Date: Fri, 17 Jun 2005 16:48:33 +0000 Subject: [PATCH] Get rid of warning on systems with 64 bits pointers. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1830 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/sound/mixer/nosound/audiodrv_nosound.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sc2/src/sc2code/libs/sound/mixer/nosound/audiodrv_nosound.c b/sc2/src/sc2code/libs/sound/mixer/nosound/audiodrv_nosound.c index 1e3dfe651..8ddb7e279 100644 --- a/sc2/src/sc2code/libs/sound/mixer/nosound/audiodrv_nosound.c +++ b/sc2/src/sc2code/libs/sound/mixer/nosound/audiodrv_nosound.c @@ -327,8 +327,8 @@ noSound_GetSourcei (audio_Object srcobj, audio_SourceProp pname, *value = audio_PAUSED; break; default: - fprintf (stderr, "noSound_GetSourcei(): unknown value %x\n", - *value); + fprintf (stderr, "noSound_GetSourcei(): unknown value %lx\n", + (long int) *value); *value = audio_DRIVER_FAILURE; } }