GNOME Bugzilla – Bug 720207
don't use non-standard 'd' suffix on float literal
Last modified: 2013-12-10 18:48:18 UTC
See patch.
Created attachment 263938 [details] [review] don't use non-standard 'd' suffix on float literal C does not define the 'd' suffix for floating point literals. In fact, 'double' is the default type of literals if not modified by 'f' (float) or 'l' (long float). Additionally: 'float' arguments are automatically upcasted to 'double' when passing through a varargs list, so this wouldn't be needed in any case. This problem was causing failures to build with clang.
Review of attachment 263938 [details] [review]: Looks good. I don't know where that d came from.
Attachment 263938 [details] pushed as b536449 - don't use non-standard 'd' suffix on float literal