Various GTK calls have variable arguments that are pointers, and then have to end with a sentinel. The sentinel must be NULL, not 0. But check-webkit-style complains, saying that the NULL should instead be 0.
See an example in bug 39368.
Created attachment 57212 [details] proposed patch
Comment on attachment 57212 [details] proposed patch Looks good, but it would be better if we can limit the symbols. How about r'\bg_[a-z]+_[a-z]+\b', r'\bg_[a-z]+(_[a-z]+)+\b', or r'\bg(_[a-z]+)+\b' ?
(In reply to comment #3) > (From update of attachment 57212 [details]) > Looks good, but it would be better if we can limit the symbols. How about r'\bg_[a-z]+_[a-z]+\b', r'\bg_[a-z]+(_[a-z]+)+\b', or r'\bg(_[a-z]+)+\b' ? Yeah, I like option #3. Will update the patch and land it, thanks for the review :)
Landed in r60293 <http://trac.webkit.org/changeset/60293> Thanks!