GNOME Bugzilla – Bug 140555
mismatched function prototype
Last modified: 2004-12-22 21:47:04 UTC
In file "widgets/rb-cell-renderer-rating.c", the function rb_cell_renderer_rating_render() is prototyped early and defined later. The prototype declares "guint flags", while the definition uses "GtkCellRendererState flags". Apparently gcc doesn't mind this inconsistency. Other code processing tools may, though, so they should be put in agreement. Based on the way the function is used, GtkCellRendererState appears to be the correct type.
Created attachment 26842 [details] [review] change prototype to match definition
* committed rhythmbox-devel@gnome.org--2004/rhythmbox--main--0.8--patch-9 Thanks!