Follow-up Comment #4, bug #13479 (project make):

Paul, can we close this one also?
The strerror bug is fixed and there's no point to have an old compile report
active. My intent was merely to give you a chance to clean up the code from
all this warnings. The majority is of type casting warnings and could easy be
explicit cast to the right type.

Example:
rule.c(393) : warning C4244: '=' : conversion from 'int' to 'char', possible
loss of data
expands to:
r->terminal = terminal;

Solution:
r->terminal = (char)terminal;

Currently, in 3.81 release, about 25 C4244 warnings is issued.

Even if you think it's a minor thing, besides annoying it just look so ugly
with several hundred warnings and it is so completly unnecessary. I sense
that the amount of warnings have decreased lately though.

If you want, I can send you a new compile report from the 3.81 release -
otherwise just close it.



    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?func=detailitem&item_id=13479>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/



_______________________________________________
Bug-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-make

Reply via email to