From 9907e2c334d05628e8bef0bc8433f1ec102a79a4 Mon Sep 17 00:00:00 2001 From: Paul Elliott Date: Wed, 10 Mar 2021 17:14:10 +0000 Subject: [PATCH] Improve wording of ChangeLog entry Signed-off-by: Paul Elliott --- ChangeLog.d/fix-printf-specifiers.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ChangeLog.d/fix-printf-specifiers.txt b/ChangeLog.d/fix-printf-specifiers.txt index 4fc575ae50..4867721bf3 100644 --- a/ChangeLog.d/fix-printf-specifiers.txt +++ b/ChangeLog.d/fix-printf-specifiers.txt @@ -1,10 +1,10 @@ Bugfix - * Add printf function attributes to mbedtls_debug_print_msg because we were - not actually getting any printf format specifier warnings prior to this. - Also add extra printf compiler warning flags to builds. + * Add printf function attributes to mbedtls_debug_print_msg to ensure we + get printf format specifier warnings. +Changes + * Add extra printf compiler warning flags to builds. Requirement changes - * Use %zu for print of type size_t in new work, however please do not use - them in backports, and preferably not in code that needs to be - backported. - - + * The library now uses the %zu format specifier with the printf() family of + functions, so requires a toolchain that supports it. This change does not + affect the maintained LTS branches, so when contributing changes please + bear this in mind and do not add them to backported code.