GNOME Bugzilla – Bug 747604
Fix build of gtk/inspector/css-node-tree.c
Last modified: 2015-04-10 09:19:30 UTC
Hi, The recent addition of gtk/inspector/css-node-tree.c included strings.h and used strcasecmp(), which were not universally available, breaking builds on compilers that do not have them. I will enclose a simple patch to fix this on such compilers. With blessings, thank you!
Created attachment 301260 [details] [review] gtk/inspsector/css-node-tree.c: Use g_ascii_strcasecmp() Hi, This is the patch that fixes the build by using g_ascii_strcasecmp() instead of including strings.h and using strcasecmp(). With blessings, thank you!
Review of attachment 301260 [details] [review]: Looks good to me.
Hi Emmanuele, Thanks for the review, the patch was pushed as f53737a. With blessings, thank you!