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
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user