GNOME Bugzilla – Bug 583388
export_print_page in ev-print-operation.c has a logic bug
Last modified: 2009-05-23 15:24:56 UTC
Please describe the problem: export_print_page in ev-print-operation.c: (line 905 in my source, 955 in the master trunk) (export->pages_per_sheet > 1 && export->total - 1 % export->pages_per_sheet == 0) will always be false because there's parantheses missing around (export->total - 1) Funnily enough, fixing the bug seems to break the intended behaviour :) Steps to reproduce: Actual results: Expected results: Does this happen every time? Other information:
Fixed by the patch attached to bug #583429.