When moving the alignment attribute, a semicolon was missed. Fixes: 27595cd83053 ("drivers: move alignment attribute on types for MSVC")
Signed-off-by: Thomas Monjalon <tho...@monjalon.net> --- drivers/crypto/mvsam/rte_mrvl_pmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/crypto/mvsam/rte_mrvl_pmd.c b/drivers/crypto/mvsam/rte_mrvl_pmd.c index 193b7fb931..a824719fb0 100644 --- a/drivers/crypto/mvsam/rte_mrvl_pmd.c +++ b/drivers/crypto/mvsam/rte_mrvl_pmd.c @@ -60,7 +60,7 @@ struct __rte_aligned(32) cipher_params_mapping { struct __rte_aligned(32) auth_params_mapping { enum algo_supported supported; /**< On/off switch */ enum sam_auth_alg auth_alg; /**< Auth algorithm */ -} +}; /** * Map of supported cipher algorithms. -- 2.45.0