Re: [ovs-dev] [PATCH] ofproto: Fix build with some GCC versions.

2018-09-27 Thread Ben Pfaff
On Wed, Sep 26, 2018 at 11:04:13PM -0700, Justin Pettit wrote: > > > On Sep 26, 2018, at 4:11 PM, Ben Pfaff wrote: > > > > GCC 4.8.x and possibly other versions don't like a designated initializer > > for an anonymous struct, see e.g. > > https://travis-ci.org/openvswitch/ovs/jobs/433747674 > >

Re: [ovs-dev] [PATCH] ofproto: Fix build with some GCC versions.

2018-09-26 Thread Justin Pettit
> On Sep 26, 2018, at 4:11 PM, Ben Pfaff wrote: > > GCC 4.8.x and possibly other versions don't like a designated initializer > for an anonymous struct, see e.g. > https://travis-ci.org/openvswitch/ovs/jobs/433747674 > > Fixes: f836888d28ec ("ofproto: Handle OpenFlow version mismatch for > re

[ovs-dev] [PATCH] ofproto: Fix build with some GCC versions.

2018-09-26 Thread Ben Pfaff
GCC 4.8.x and possibly other versions don't like a designated initializer for an anonymous struct, see e.g. https://travis-ci.org/openvswitch/ovs/jobs/433747674 Fixes: f836888d28ec ("ofproto: Handle OpenFlow version mismatch for requestforward with groups.") Signed-off-by: Ben Pfaff --- ofproto