<div dir="ltr"><div><div><div>On Mon, Apr 8, 2013 at 12:45 PM, Raphaėl BOLLEN <<a href="mailto:raphael.bollen@mobistar.be">raphael.bollen@mobistar.be</a>> wrote:<br>> error: invalid conversion from 'void*' to 'char*' [-fpermissive]<br>
<br><br>jack_ringbuffer_read() expects the buffer pointer to be of type  char* not void*. <br></div>The "char*" should just be interpreted as "pointer", as the data is data, which is not necessarily a char.<br>
<br></div>Change your case from (void*) to (char*) and you won't need -fpermissive :)<br></div>HTH, -H<br></div>