diff options
author | nick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-04-19 16:34:04 +0000 |
---|---|---|
committer | nick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-04-19 16:34:04 +0000 |
commit | 82df1b9d24824f8f65882b77143522767fc83fe6 (patch) | |
tree | 0946af8cd5196d664b6bd9eb7d2e72222e3e669c /libdha/sysdep | |
parent | d4731081be03a7799c5ebaef7a9026bb1b6a53d8 (diff) |
sync with mplayerxp
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5703 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libdha/sysdep')
-rw-r--r-- | libdha/sysdep/pci_alpha.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdha/sysdep/pci_alpha.c b/libdha/sysdep/pci_alpha.c index 1ab1db2aa4..e968b3e121 100644 --- a/libdha/sysdep/pci_alpha.c +++ b/libdha/sysdep/pci_alpha.c @@ -11,7 +11,7 @@ static int pci_get_vendor( unsigned char dev, int func) { - int retval; + unsigned long retval; pciconfig_read(bus, dev<<3, PCI_ID_REG, 4, &retval); return retval; } @@ -22,7 +22,7 @@ static long pci_config_read_long( int func, unsigned cmd) { - long retval; + unsigned long retval; pciconfig_read(bus, dev<<3, cmd, 4, &retval); return retval; } |