diff options
Diffstat (limited to 'src/vnet/crypto')
-rw-r--r-- | src/vnet/crypto/node.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vnet/crypto/node.c b/src/vnet/crypto/node.c index 12e6033ad80..63ed95e7d93 100644 --- a/src/vnet/crypto/node.c +++ b/src/vnet/crypto/node.c @@ -161,10 +161,10 @@ VLIB_NODE_FN (crypto_dispatch_node) (vlib_main_t * vm, u32 index; /* *INDENT-OFF* */ - clib_bitmap_foreach (index, cm->async_active_ids, ({ + clib_bitmap_foreach (index, cm->async_active_ids) { n_cache = crypto_dequeue_frame (vm, node, ct, cm->dequeue_handlers[index], n_cache, &n_dispatched); - })); + } /* *INDENT-ON* */ if (n_cache) vlib_buffer_enqueue_to_next (vm, node, ct->buffer_indice, ct->nexts, |