Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[iot-pmc] [CQ 23722] picohttpparser

http://dev.eclipse.org/ipzilla/show_bug.cgi?id=23722





--- Comment #4 from Roger Light <roger@xxxxxxxxxx>  2021-09-14 05:03:06 ---
I ticked "unmodified", but actually there are seven very minor compiler
warnings I'd like to fix, which are all about casting variable types. One
example would be to replace

toklen = buf - tok_start;

with

toklen = (size_t)buf - tok_start;

The other fixes are all essentially the same.


-- 
Configure CQmail: http://dev.eclipse.org/ipzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the CQ.


Back to the top