Bugzilla – Bug 150400
glade-2.12.1-4: dodgy code
Last modified: 2006-02-13 13:48:05 UTC
I just tried to compile package glade-2.12.1-4 with the Intel C compiler. It said gbwidget.c(405): warning #187: use of "=" where "==" may have been intended The source code is g_return_val_if_fail ((new_widget = NULL), NULL); Suggest code rework. Maybe the programmer intended g_return_val_if_fail ((new_widget == NULL), NULL);
David: Please don't report these issues unless there is an actual problem. Specially don't report warnings from icc, SUSE Linux is getting compiled with gcc. And as the compiler says correctly here: It _may_ have.