GNOME Bugzilla – Bug 774723
[PATCH] Fix printf format specifier
Last modified: 2016-11-19 15:42:14 UTC
Created attachment 340311 [details] [review] Fix printf format specifier libgnome-games-support not building on master due to compilation error
Review of attachment 340311 [details] [review]: ::: games/scores/dialog.vala @@ +276,3 @@ score.set_text ("%s %s".printf ( /* Time which may be displayed on a scores dialog. */ + ngettext ("%d minute", "%ld minutes", minutes).printf (minutes), Also change the first %d @@ +279,2 @@ /* Time which may be displayed on a scores dialog. */ + ngettext ("%d second", "%ld seconds", seconds).printf (seconds))); Ditto.
Created attachment 340312 [details] [review] Fix printf format specifier
Review of attachment 340312 [details] [review]: Thanks!