X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fvconn-provider.h;h=f4e9a9e4d6f94d890209a929ea4a025b2db9b1f1;hb=cb22974d773942d66da42b700b8bca0db27a0920;hp=a26d9c55753efd1300103465315b3295566c1012;hpb=4749f73d12c844b318af7f45cf45e1acac9f7c08;p=sliver-openvswitch.git diff --git a/lib/vconn-provider.h b/lib/vconn-provider.h index a26d9c557..f4e9a9e4d 100644 --- a/lib/vconn-provider.h +++ b/lib/vconn-provider.h @@ -20,8 +20,8 @@ /* Provider interface to vconns, which provide a virtual connection to an * OpenFlow device. */ -#include #include "vconn.h" +#include "util.h" #include "openflow/openflow-common.h" /* Active virtual connection to an OpenFlow device. */ @@ -53,7 +53,7 @@ void vconn_set_local_port(struct vconn *, ovs_be16 local_port); static inline void vconn_assert_class(const struct vconn *vconn, const struct vconn_class *class) { - assert(vconn->class == class); + ovs_assert(vconn->class == class); } struct vconn_class { @@ -148,7 +148,7 @@ void pvconn_init(struct pvconn *pvconn, struct pvconn_class *class, static inline void pvconn_assert_class(const struct pvconn *pvconn, const struct pvconn_class *class) { - assert(pvconn->class == class); + ovs_assert(pvconn->class == class); } struct pvconn_class {