On 2/23/22 03:43, Alexandre Torres Porres wrote:
Hi, I'm trying to get rid of all compilation warnings for my library but I'm stuck with this one. Is there a way to get rid of this or I'll just have to live with it?
*warning: **incompatible integer to pointer conversion initializing 't_int *' (aka 'long *')*
with an expression of type 'int' [-Wint-conversion]*
t_int*nblock = sp[0]->s_n;
that is just a bug in your code. it should read:
``` int nblock = sp[0]->s_n; ```
mgfdasr IOhannes