Alex Hermann writes:
This commit is introducing compiler warnings, can
you please fix them?
This line:
LM_DBG("inserting '%.*s'\n", at - buf, buf);
fixed by
removing the offending line (don't know how to tell '%.*' that
length is long).
Just cast to int:
LM_DBG("inserting '%.*s'\n", (int)(at - buf), buf);
Cheers,
Daniel
--
Daniel-Constantin Mierla -