GNOME Bugzilla – Bug 744928
src/application_window.c: void function should not return a value
Last modified: 2015-02-22 15:31:25 UTC
et_application_window_update_file_name_from_ui doesn't have a return value, so it should use g_return_if_fail instead of g_return_val_if_fail. This causes error when compiling easytag with clang. The attached patch fixes this error.
Created attachment 297551 [details] [review] Fix "void function should not return a value"
Review of attachment 297551 [details] [review]: Looks good, please push.
Comment on attachment 297551 [details] [review] Fix "void function should not return a value" Attachment 297551 [details] pushed as 678d0b9 - Fix "void function should not return a value"
Thanks, much appreciated!