summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEitan Eliahu <eliahue@vmware.com>2014-11-05 01:39:20 -0800
committerBen Pfaff <blp@nicira.com>2014-11-05 07:28:23 -0800
commit5167d6b010082d0a164fd743800fe653bbb310d2 (patch)
tree8612279670ef71b20099470017fdc2cdb18c8700
parent73056818e9f8b6a24b708d383c8453bd25eadb9a (diff)
downloadopenvswitch-5167d6b010082d0a164fd743800fe653bbb310d2.tar.gz
router-table-stub: Fix compilation error.
Signed-off-by: Eitan Eliahu <eliahue@vmware.com> Acked-by: Nithin Raju <nithin@vmware.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
-rw-r--r--lib/route-table-stub.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/route-table-stub.c b/lib/route-table-stub.c
index 85c25835c..5aedf5b0c 100644
--- a/lib/route-table-stub.c
+++ b/lib/route-table-stub.c
@@ -18,10 +18,10 @@
#include "compiler.h"
bool
-ovs_router_lookup(ovs_be32 ip_dst OVS_UNUSED, char output_bridge[], ovs_be32 *gw)
+ovs_router_lookup(ovs_be32 ip_dst OVS_UNUSED, char output_bridge[] OVS_UNUSED,
+ ovs_be32 *gw)
{
*gw = 0;
- name[0] = '\0';
return false;
}