GNOME Bugzilla – Bug 639501
libs/rgbe/rgbe.c has a typo x_axis should be y_axis
Last modified: 2011-03-28 22:18:50 UTC
Created attachment 178300 [details] [review] Patch to fix the problem. I was curious about a warning: rgbe.c: In function ‘rgbe_header_init’: rgbe.c:149:25: warning: operation on ‘header->x_axis.size’ may be undefined [-Wsequence-point] The line (with preceding line) was: header->x_axis.orient = header->y_axis.orient = ORIENT_UNKNOWN; header->x_axis.size = header->x_axis.size = 0; It's obviously a sequence point issue, but just as obviously it should have been: header->x_axis.size = header->y_axis.size = 0; Patch attached.
Already fixed in master. Thanks for the patch, sorry for not reviewing more promptly.