Quiet warning about unused args in cpld_buffer_refilled().

This commit is contained in:
Jared Boone
2014-11-10 11:11:49 -08:00
parent 572fe32393
commit 9bf640895f

View File

@ -40,6 +40,8 @@ volatile bool cpld_wait = false;
static void cpld_buffer_refilled(void* user_data, unsigned int length) static void cpld_buffer_refilled(void* user_data, unsigned int length)
{ {
(void)user_data;
(void)length;
cpld_wait = false; cpld_wait = false;
} }