summaryrefslogtreecommitdiff
path: root/src/input/input_cdda.c
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@civ.zcu.cz>2009-01-12 19:24:48 +0100
committerFrantišek Dvořák <valtri@civ.zcu.cz>2009-01-12 19:24:48 +0100
commit7e47a3180c08f2fcaa688ab33cae838d88d8ba0e (patch)
treebe69336b766f841bb08727d7f5d9b46be40b0303 /src/input/input_cdda.c
parent9b5de45cf7d56439a3f7b94c2936e2c4f2aa8a3e (diff)
downloadxine-lib-7e47a3180c08f2fcaa688ab33cae838d88d8ba0e.tar.gz
xine-lib-7e47a3180c08f2fcaa688ab33cae838d88d8ba0e.tar.bz2
Fixed lvalue cast error (build with newer mingw compilation tools).
Diffstat (limited to 'src/input/input_cdda.c')
-rw-r--r--src/input/input_cdda.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/input_cdda.c b/src/input/input_cdda.c
index 996460832..e702238c2 100644
--- a/src/input/input_cdda.c
+++ b/src/input/input_cdda.c
@@ -2084,9 +2084,9 @@ static int cdda_open(cdda_input_plugin_t *this_gen,
hASPI = LoadLibrary( "wnaspi32.dll" );
if( hASPI != NULL )
{
- (FARPROC) lpGetSupport = GetProcAddress( hASPI,
+ lpGetSupport = GetProcAddress( hASPI,
"GetASPI32SupportInfo" );
- (FARPROC) lpSendCommand = GetProcAddress( hASPI,
+ lpSendCommand = GetProcAddress( hASPI,
"SendASPI32Command" );
}