diff options
author | František Dvořák <valtri@civ.zcu.cz> | 2009-01-12 19:24:48 +0100 |
---|---|---|
committer | František Dvořák <valtri@civ.zcu.cz> | 2009-01-12 19:24:48 +0100 |
commit | 7e47a3180c08f2fcaa688ab33cae838d88d8ba0e (patch) | |
tree | be69336b766f841bb08727d7f5d9b46be40b0303 /src/input/vcd/libcdio/MSWindows/aspi32.c | |
parent | 9b5de45cf7d56439a3f7b94c2936e2c4f2aa8a3e (diff) | |
download | xine-lib-7e47a3180c08f2fcaa688ab33cae838d88d8ba0e.tar.gz xine-lib-7e47a3180c08f2fcaa688ab33cae838d88d8ba0e.tar.bz2 |
Fixed lvalue cast error (build with newer mingw compilation tools).
Diffstat (limited to 'src/input/vcd/libcdio/MSWindows/aspi32.c')
-rw-r--r-- | src/input/vcd/libcdio/MSWindows/aspi32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/vcd/libcdio/MSWindows/aspi32.c b/src/input/vcd/libcdio/MSWindows/aspi32.c index 238a4b4e9..e62f8a089 100644 --- a/src/input/vcd/libcdio/MSWindows/aspi32.c +++ b/src/input/vcd/libcdio/MSWindows/aspi32.c @@ -162,9 +162,9 @@ have_aspi( HMODULE *hASPI, return false; } - (FARPROC) *lpGetSupport = GetProcAddress( *hASPI, + *lpGetSupport = (FARPROC)GetProcAddress( *hASPI, "GetASPI32SupportInfo" ); - (FARPROC) *lpSendCommand = GetProcAddress( *hASPI, + *lpSendCommand = (FARPROC)GetProcAddress( *hASPI, "SendASPI32Command" ); /* make sure that we've got both function addresses */ |