Commit 0b49d703 authored by David S. Miller's avatar David S. Miller

[DVB]: Fix pointer-->int cast in budget-patch.c

parent 99b49377
......@@ -150,7 +150,7 @@ int budget_patch_diseqc_ioctl (struct dvb_frontend *fe, unsigned int cmd, void *
}
case FE_DISEQC_SEND_BURST:
av7110_send_diseqc_msg (budget, 0, NULL, (int) arg);
av7110_send_diseqc_msg (budget, 0, NULL, (int) (long) arg);
break;
default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment