1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-05 23:21:22 -08:00

; * src/sound.c (Fw32_sound_volume): Avoid compiler warning.

This commit is contained in:
Eli Zaretskii 2026-01-31 13:06:36 +02:00
parent 0fc6ab4597
commit 61b2ece41b

View file

@ -1367,7 +1367,8 @@ current volume setting.
The return value is the integer volume setting before the change, if any. */)
(Lisp_Object volume)
{
DWORD ui_volume, ui_volume_orig;
DWORD ui_volume UNINIT;
DWORD ui_volume_orig;
MMRESULT mm_result = MMSYSERR_NOERROR;
if (FIXNUMP (volume))