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

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