@@ -62,12 +62,12 @@ namespace AVS
6262#define kResetTimeout 1500 /* msec */
6363
6464static IOReturn dfd_tspacket_handler_thunk (
65- UInt32 tsPacketCount, UInt32 **ppBuf, void *callback_data);
65+ long unsigned int tsPacketCount, UInt32 **ppBuf, void *callback_data);
6666static void dfd_update_device_list (void *dfd, io_iterator_t iterator);
6767static void dfd_streaming_log_message (char *pString);
6868void *dfd_controller_thunk (void *param);
69- void dfd_stream_msg (UInt32 msg, UInt32 param1,
70- UInt32 param2, void *callback_data);
69+ void dfd_stream_msg (long unsigned int msg, long unsigned int param1,
70+ long unsigned int param2, void *callback_data);
7171int dfd_no_data_notification (void *callback_data);
7272
7373class DFDPriv
@@ -894,8 +894,8 @@ int dfd_no_data_notification(void *callback_data)
894894 return kIOReturnSuccess ;
895895}
896896
897- void dfd_stream_msg (UInt32 msg, UInt32 param1,
898- UInt32 param2, void *callback_data)
897+ void dfd_stream_msg (long unsigned int msg, long unsigned int param1,
898+ long unsigned int param2, void *callback_data)
899899{
900900 ((DarwinFirewireDevice*)callback_data)->
901901 ProcessStreamingMessage (msg, param1, param2);
@@ -915,7 +915,7 @@ int dfd_tspacket_handler(uint tsPacketCount, uint32_t **ppBuf,
915915}
916916
917917static IOReturn dfd_tspacket_handler_thunk (
918- UInt32 tsPacketCount, UInt32 **ppBuf, void *callback_data)
918+ long unsigned int tsPacketCount, UInt32 **ppBuf, void *callback_data)
919919{
920920 return dfd_tspacket_handler (
921921 tsPacketCount, (uint32_t **)ppBuf, callback_data);
0 commit comments