mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-05 05:34:32 +02:00
Merge branch 'bugfix/heap-ignored-warnings' into 'master'
heap: fix and re-enable no-format warnings Closes IDF-6802 See merge request espressif/esp-idf!22717
This commit is contained in:
@@ -71,5 +71,3 @@ if(NOT CMAKE_BUILD_EARLY_EXPANSION)
|
|||||||
target_compile_options(${COMPONENT_TARGET} PRIVATE "-DMULTI_HEAP_FREERTOS")
|
target_compile_options(${COMPONENT_TARGET} PRIVATE "-DMULTI_HEAP_FREERTOS")
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
* SPDX-FileCopyrightText: 2015-2023 Espressif Systems (Shanghai) CO LTD
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: Apache-2.0
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
*/
|
*/
|
||||||
@@ -564,7 +564,7 @@ void heap_caps_get_info( multi_heap_info_t *info, uint32_t caps )
|
|||||||
void heap_caps_print_heap_info( uint32_t caps )
|
void heap_caps_print_heap_info( uint32_t caps )
|
||||||
{
|
{
|
||||||
multi_heap_info_t info;
|
multi_heap_info_t info;
|
||||||
printf("Heap summary for capabilities 0x%08X:\n", caps);
|
printf("Heap summary for capabilities 0x%08"PRIX32":\n", caps);
|
||||||
heap_t *heap;
|
heap_t *heap;
|
||||||
SLIST_FOREACH(heap, ®istered_heaps, next) {
|
SLIST_FOREACH(heap, ®istered_heaps, next) {
|
||||||
if (heap_caps_match(heap, caps)) {
|
if (heap_caps_match(heap, caps)) {
|
||||||
|
Reference in New Issue
Block a user