On 1/7/13 9:02 PM, Juha Heinanen wrote:
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