2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 06:15:47 +00:00

ofpbuf: Rename ofpbuf "private" member for C++ header compatibility.

From partner.
This commit is contained in:
Ben Pfaff
2010-02-01 09:46:31 -08:00
parent 0b3f40f371
commit d45e9c65c6
3 changed files with 13 additions and 5 deletions

View File

@@ -36,7 +36,7 @@ ofpbuf_use(struct ofpbuf *b, void *base, size_t allocated)
b->size = 0;
b->l2 = b->l3 = b->l4 = b->l7 = NULL;
b->next = NULL;
b->private = NULL;
b->private_p = NULL;
}
/* Initializes 'b' as an empty ofpbuf with an initial capacity of 'size'