https://bugs.kde.org/show_bug.cgi?id=379502
Philippe Waroquiers <philippe.waroqui...@skynet.be> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.waroquiers@skynet. | |be --- Comment #3 from Philippe Waroquiers <philippe.waroqui...@skynet.be> --- Thanks for reporting these suspicious pieces of code. I fixed 2 of the reported errors: - (info = NULL ? "" : info)); + (info == NULL ? "" : info)); and - taken_Jccs, taken_Jccs * 100.0 / total_Jccs ?: 1); + taken_Jccs, taken_Jccs * 100.0 / (total_Jccs ? total_Jccs : 1)); in revision 16379. Keeping the bug opened, as other reported problems still to be looked at. -- You are receiving this mail because: You are watching all bug changes.