Blame SOURCES/paps-fix-paper-size-truncate.patch

b7f097
diff -pruN paps-0.6.8.orig/src/paps.c paps-0.6.8/src/paps.c
b7f097
--- paps-0.6.8.orig/src/paps.c	2015-04-24 11:49:53.220718394 +0900
b7f097
+++ paps-0.6.8/src/paps.c	2015-04-24 11:51:30.847718394 +0900
b7f097
@@ -532,9 +532,9 @@ int main(int argc, char *argv[])
b7f097
 
b7f097
   /* Page layout */
b7f097
   if (page_width < 0)
b7f097
-    page_width = paper_sizes[(int)paper_type].width;
b7f097
+    page_width = (paper_sizes[(int)paper_type].width + 0.5);
b7f097
   if (page_height < 0)
b7f097
-    page_height = paper_sizes[(int)paper_type].height;
b7f097
+    page_height = (paper_sizes[(int)paper_type].height + 0.5);
b7f097
   
b7f097
   if (num_columns == 1)
b7f097
     total_gutter_width = 0;