From 55cb768a5f7bb6c0c3593fdc7e2969dd9656dac3 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Fri, 23 Sep 2011 14:12:45 +0200 Subject: [PATCH] Win32: remove unused variable --- src/interface/intf_eject.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/interface/intf_eject.c b/src/interface/intf_eject.c index 4031d99d75..98f95d407c 100644 --- a/src/interface/intf_eject.c +++ b/src/interface/intf_eject.c @@ -145,7 +145,6 @@ int intf_Eject( vlc_object_t *p_this, const char *psz_device ) #elif defined(WIN32) MCI_OPEN_PARMS op; - MCI_STATUS_PARMS st; DWORD i_flags; char psz_drive[4]; @@ -162,7 +161,6 @@ int intf_Eject( vlc_object_t *p_this, const char *psz_device ) if( !mciSendCommand( 0, MCI_OPEN, i_flags, (uintptr_t)&op ) ) { - st.dwItem = MCI_STATUS_READY; /* Eject disc */ i_ret = mciSendCommand( op.wDeviceID, MCI_SET, MCI_SET_DOOR_OPEN, 0 ); /* Release access to the device */ -- 2.39.2