Date: Fri, 04 Jul 2014 06:36:36 +0000 From: bugzilla-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 191594] New: devel/kyua-cli-0.8_3 fails to compile [patch] Message-ID: <bug-191594-13@https.bugs.freebsd.org/bugzilla/>
next in thread | raw e-mail | index | archive | help
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@FreeBSD.org Reporter: marka@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.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-191594-13>