[Bug 191594] New: devel/kyua-cli-0.8_3 fails to compile [patch]

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Fri Jul 4 06:36:36 UTC 2014


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191594

            Bug ID: 191594
           Summary: devel/kyua-cli-0.8_3 fails to compile [patch]
           Product: Ports Tree
           Version: Latest
          Hardware: Any
                OS: Any
            Status: Needs Triage
          Severity: Affects Only Me
          Priority: Normal
         Component: Individual Port(s)
          Assignee: freebsd-ports-bugs at FreeBSD.org
          Reporter: marka at isc.org

A integer constant is too big for a (int) resulting in the compile
    failing.

How-To-Repeat:
Attempt to compile devel/kyua-cli-0.8_3

Fix:
--- utils/datetime_test.cpp    2013-03-06 09:58:14.000000000 +1100
+++ utils/datetime_test.cpp    2014-07-04 16:21:57.000000000 +1000
@@ -86,7 +86,7 @@
     }
     {
         const datetime::delta delta = datetime::delta::from_microseconds(
-            123456789123456);
+            123456789123456LL);
         ATF_REQUIRE_EQ(123456789, delta.seconds);
         ATF_REQUIRE_EQ(123456, delta.useconds);
     }

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-ports-bugs mailing list