mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 14:25:26 +00:00
Rename NOT_REACHED to OVS_NOT_REACHED
This allows other libraries to use util.h that has already defined NOT_REACHED. Signed-off-by: Harold Lim <haroldl@vmware.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
@@ -276,7 +276,7 @@ ofpbuf_resize__(struct ofpbuf *b, size_t new_headroom, size_t new_tailroom)
|
||||
break;
|
||||
|
||||
case OFPBUF_STACK:
|
||||
NOT_REACHED();
|
||||
OVS_NOT_REACHED();
|
||||
|
||||
case OFPBUF_STUB:
|
||||
b->source = OFPBUF_MALLOC;
|
||||
@@ -285,7 +285,7 @@ ofpbuf_resize__(struct ofpbuf *b, size_t new_headroom, size_t new_tailroom)
|
||||
break;
|
||||
|
||||
default:
|
||||
NOT_REACHED();
|
||||
OVS_NOT_REACHED();
|
||||
}
|
||||
|
||||
b->allocated = new_allocated;
|
||||
|
Reference in New Issue
Block a user