summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDarrell Ball <dlu998@gmail.com>2018-07-16 11:33:39 -0700
committerBen Pfaff <blp@ovn.org>2018-08-03 17:37:05 -0700
commiteb739be2ec3e063675ecfa5cb71f7459fbe6f725 (patch)
treed8bd9d2a0c0d083a6aa281d666392251dbe59445 /lib
parentab16d2c2871b82d1f71c652657791acd9ca51161 (diff)
downloadopenvswitch-eb739be2ec3e063675ecfa5cb71f7459fbe6f725.tar.gz
db-ctl-base: Fix build with gcc 7.3 with O3.
Signed-off-by: Darrell Ball <dlu998@gmail.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/db-ctl-base.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/db-ctl-base.c b/lib/db-ctl-base.c
index 4e0eb9c5c..fc0929317 100644
--- a/lib/db-ctl-base.c
+++ b/lib/db-ctl-base.c
@@ -1279,7 +1279,7 @@ cmd_find(struct ctl_context *ctx)
int i;
for (i = 2; i < ctx->argc; i++) {
- bool satisfied;
+ bool satisfied = false;
ctx->error = check_condition(table, row, ctx->argv[i],
ctx->symtab, &satisfied);