From: Ben Pfaff Date: Mon, 11 Oct 2010 21:04:10 +0000 (-0700) Subject: datapath: Fix typo in 64-bit compat header. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=45ca68cbadc3697ac95c53939d2877c6c2a3782e;p=openvswitch datapath: Fix typo in 64-bit compat header. Commit f1588b1f "datapath: Remove implementation of port groups" added a spurious "V" in the odp-compat.h header. I failed to test-build that commit on a 64-bit system and thus this broke the build on x86-64 and other 64-bit systems. Signed-off-by: Ben Pfaff Acked-by: Jesse Gross --- diff --git a/datapath/odp-compat.h b/datapath/odp-compat.h index fc6faa53..669a5216 100644 --- a/datapath/odp-compat.h +++ b/datapath/odp-compat.h @@ -15,7 +15,7 @@ #include "openvswitch/datapath-protocol.h" #include -#define ODP_VPORT_LIST32 _IOWR('O', 10, struct compat_odp_portvec) +#define ODP_PORT_LIST32 _IOWR('O', 10, struct compat_odp_portvec) #define ODP_FLOW_GET32 _IOWR('O', 13, struct compat_odp_flow) #define ODP_FLOW_PUT32 _IOWR('O', 14, struct compat_odp_flow) #define ODP_FLOW_LIST32 _IOWR('O', 15, struct compat_odp_flowvec)