Skip to content

Commit

Permalink
ovsdb-idl: Fix indentation in a couple of places.
Browse files Browse the repository at this point in the history
White space changes only.

Signed-off-by: Ben Pfaff <[email protected]>
Acked-by: Alin Gabriel Serdean <[email protected]>
  • Loading branch information
blp committed Dec 11, 2017
1 parent f5a12b8 commit 1ac62a0
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions lib/ovsdb-idl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1631,12 +1631,12 @@ ovsdb_idl_send_monitor_request(struct ovsdb_idl *idl)
static void
log_parse_update_error(struct ovsdb_error *error)
{
if (!VLOG_DROP_WARN(&syntax_rl)) {
char *s = ovsdb_error_to_string(error);
VLOG_WARN_RL(&syntax_rl, "%s", s);
free(s);
}
ovsdb_error_destroy(error);
if (!VLOG_DROP_WARN(&syntax_rl)) {
char *s = ovsdb_error_to_string(error);
VLOG_WARN_RL(&syntax_rl, "%s", s);
free(s);
}
ovsdb_error_destroy(error);
}

static void
Expand Down Expand Up @@ -1899,9 +1899,9 @@ ovsdb_idl_process_update2(struct ovsdb_idl_table *table,
return false;
}
} else {
VLOG_WARN_RL(&semantic_rl, "unknown operation %s to "
"table %s", operation, table->class_->name);
return false;
VLOG_WARN_RL(&semantic_rl, "unknown operation %s to "
"table %s", operation, table->class_->name);
return false;
}

return true;
Expand Down

0 comments on commit 1ac62a0

Please sign in to comment.