summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ovsdb/column.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/ovsdb/column.c b/ovsdb/column.c
index fc21cdc98..dc93dc71b 100644
--- a/ovsdb/column.c
+++ b/ovsdb/column.c
@@ -31,16 +31,16 @@ ovsdb_column_create(const char *name, const char *comment,
bool mutable, bool persistent,
const struct ovsdb_type *type)
{
- struct ovsdb_column *ts;
+ struct ovsdb_column *column;
- ts = xzalloc(sizeof *ts);
- ts->name = xstrdup(name);
- ts->comment = comment ? xstrdup(comment) : NULL;
- ts->mutable = mutable;
- ts->persistent = persistent;
- ts->type = *type;
+ column = xzalloc(sizeof *column);
+ column->name = xstrdup(name);
+ column->comment = comment ? xstrdup(comment) : NULL;
+ column->mutable = mutable;
+ column->persistent = persistent;
+ column->type = *type;
- return ts;
+ return column;
}
void