2003-10-06 Mike Stump * c-typeck.c (convert_for_assignment): Tighted up pointer converstions that differ in signedness. Doing diffs in .: *** ./c-typeck.c.~1~ Thu Oct 2 10:47:02 2003 --- ./c-typeck.c Mon Oct 6 15:15:15 2003 *************** convert_for_assignment (tree type, tree *** 3535,3541 **** || target_cmp) ; /* If there is a mismatch, do warn. */ ! else if (pedantic) warn_for_assignment ("pointer targets in %s differ in signedness", errtype, funname, parmnum); } --- 3535,3541 ---- || target_cmp) ; /* If there is a mismatch, do warn. */ ! else warn_for_assignment ("pointer targets in %s differ in signedness", errtype, funname, parmnum); } --------------