GNOME Bugzilla – Bug 754927
Non-void function should return a value
Last modified: 2015-09-12 18:29:54 UTC
Function gimp_dnd_data_source_remove in app/widgets/gimpdnd.c has a return value, so it cannot use 'return;'. It should use 'return FALSE;'.
Oops, thanks! Fixed in master and gimp-2-8: commit 9d5fed6ea66dba308400ce2f275b51d6d145d404 Author: Michael Natterer <mitch@gimp.org> Date: Sat Sep 12 20:26:56 2015 +0200 Bug 754927 - Non-void function should return a value Fix return value glitch in last DND-related commit. (cherry picked from commit 1833d292cc5a30527c730d9328b4d6e41cf7fde5) app/widgets/gimpdnd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)