Changeset 3158:2659c59c8005 in roaraudio


Ignore:
Timestamp:
01/15/10 17:05:34 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

set corrected pointer types a bit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroaross/libroaross.c

    r3157 r3158  
    487487// ------------------------------------- 
    488488 
    489 static int _ioctl_mixer (struct handle * handle, long unsigned int req, int * ip) { 
     489static int _ioctl_mixer (struct handle * handle, long unsigned int req, void * vp) { 
    490490 int channels; 
    491491 struct roar_mixer_settings mixer; 
     
    493493 int o_w    =  0; 
    494494 int o_sid  = -1; 
     495 int * ip   = vp; 
    495496 
    496497 switch (req) { 
     
    770771    break; 
    771772   case HT_MIXER: 
    772      return _ioctl_mixer(handle, __request, ip); 
     773     return _ioctl_mixer(handle, __request, argp); 
    773774    break; 
    774775   default: 
Note: See TracChangeset for help on using the changeset viewer.