mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-16 19:37:11 +00:00
There is new patch-status QA check in oe-core: https://git.openembedded.org/openembedded-core/commit/?id=76a685bfcf927593eac67157762a53259089ea8a This is temporary work around just to hide _many_ warnings from optional patch-status (if you add it to WARN_QA). This just added Upstream-Status: Pending everywhere without actually investigating what's the proper status. This is just to hide current QA warnings and to catch new .patch files being added without Upstream-Status, but the number of Pending patches is now terrible: 5 (26%) meta-xfce 6 (50%) meta-perl 15 (42%) meta-webserver 21 (36%) meta-gnome 25 (57%) meta-filesystems 26 (43%) meta-initramfs 45 (45%) meta-python 47 (55%) meta-multimedia 312 (63%) meta-networking 756 (61%) meta-oe Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
45 lines
1.3 KiB
Diff
45 lines
1.3 KiB
Diff
Upstream-Status: Pending
|
|
|
|
Description: Fix compilation with gcc-6
|
|
Author: Gert Wollny <gw.fossdev@gmail.com>
|
|
Last-Updated: 2016-07-26
|
|
Forwarded: No
|
|
Bug-Debian: https://bugs.debian.org/811659
|
|
Bug-Debian: https://bugs.debian.org/831146
|
|
|
|
--- a/streams/wvstream.cc
|
|
+++ b/streams/wvstream.cc
|
|
@@ -907,9 +907,9 @@
|
|
|
|
if (forceable)
|
|
{
|
|
- si.wants.readable = readcb;
|
|
- si.wants.writable = writecb;
|
|
- si.wants.isexception = exceptcb;
|
|
+ si.wants.readable = static_cast<bool>(readcb);
|
|
+ si.wants.writable = static_cast<bool>(writecb);
|
|
+ si.wants.isexception = static_cast<bool>(exceptcb);
|
|
}
|
|
else
|
|
{
|
|
@@ -1019,7 +1019,8 @@
|
|
|
|
IWvStream::SelectRequest WvStream::get_select_request()
|
|
{
|
|
- return IWvStream::SelectRequest(readcb, writecb, exceptcb);
|
|
+ return IWvStream::SelectRequest(static_cast<bool>(readcb), static_cast<bool>(writecb),
|
|
+ static_cast<bool>(exceptcb));
|
|
}
|
|
|
|
|
|
@@ -1107,7 +1108,8 @@
|
|
// inefficient, because if the alarm was expired then pre_select()
|
|
// returned true anyway and short-circuited the previous select().
|
|
TRACE("hello-%p\n", this);
|
|
- return !alarm_was_ticking || select(0, readcb, writecb, exceptcb);
|
|
+ return !alarm_was_ticking || select(0, static_cast<bool>(readcb),
|
|
+ static_cast<bool>(writecb), static_cast<bool>(exceptcb));
|
|
}
|
|
|
|
|