From 5b98d73864b189349dacaaf07c16207e72bcf3a2 Mon Sep 17 00:00:00 2001 From: David Horstmann Date: Thu, 10 Nov 2022 18:55:00 +0000 Subject: [PATCH] Linewrap for the benefit of Uncrustify The last line of programs/psa/key_ladder_demo.c is of the following form: #endif /* Very long comment ... */ Uncrustify tries to reduce the length: #endif \ /* Very long comment ... */ and causes a compiler error as there is a continuation line with no actual code in it. Work around this by linewrapping the comment in advance. Signed-off-by: David Horstmann --- programs/psa/key_ladder_demo.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/programs/psa/key_ladder_demo.c b/programs/psa/key_ladder_demo.c index 13037190d..f40874e1c 100644 --- a/programs/psa/key_ladder_demo.c +++ b/programs/psa/key_ladder_demo.c @@ -713,4 +713,6 @@ usage_failure: usage( ); return( EXIT_FAILURE ); } -#endif /* MBEDTLS_SHA256_C && MBEDTLS_MD_C && MBEDTLS_AES_C && MBEDTLS_CCM_C && MBEDTLS_PSA_CRYPTO_C && MBEDTLS_FS_IO */ +#endif /* MBEDTLS_SHA256_C && MBEDTLS_MD_C && + MBEDTLS_AES_C && MBEDTLS_CCM_C && + MBEDTLS_PSA_CRYPTO_C && MBEDTLS_FS_IO */