https://bugzilla.redhat.com/show_bug.cgi?id=1849384



--- Comment #9 from Bob Hepple <bob.hep...@gmail.com> ---
Building on koji:

SPEC URL:
https://download.copr.fedorainfracloud.org/results/wef/swappy/fedora-31-x86_64/01514583-swappy/swappy.spec
SRPM URL:
https://download.copr.fedorainfracloud.org/results/wef/swappy/fedora-31-x86_64/01514583-swappy/swappy-1.1.0-3.fc31.src.rpm

I had to add a patch to overcome compile errors on arm7 and i686 (do we still
need i686?).

diff -Nur swappy-1.1.0-orig/src/config.c swappy-1.1.0/src/config.c
--- swappy-1.1.0-orig/src/config.c      2020-06-23 13:05:18.000000000 +1000
+++ swappy-1.1.0/src/config.c   2020-06-30 15:36:59.110245105 +1000
@@ -115,7 +115,11 @@
       config->line_size = line_size;
     } else {
       g_warning(
+#if defined(__arm__) || defined(__i686__)
+          "line_size is not a valid value: %lld - see man page for details",
+#else
           "line_size is not a valid value: %ld - see man page for details",
+#endif
           line_size);
     }
   } else {
@@ -132,7 +136,11 @@
       config->text_size = text_size;
     } else {
       g_warning(
+#if defined(__arm__) || defined(__i686__)
+          "text_size is not a valid value: %lld - see man page for details",
+#else
           "text_size is not a valid value: %ld - see man page for details",
+#endif
           text_size);
     }
   } else {


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
_______________________________________________
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/package-review@lists.fedoraproject.org

Reply via email to