This is an automated email from the ASF dual-hosted git repository. janc pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-core.git
commit fa2b45d76acd1a6d129aaece8eac1aa134e73efa Author: Wojciech Pietraszewski <[email protected]> AuthorDate: Fri Jun 28 13:57:00 2024 +0200 kernel/os_mempool: Add parameter names Adds missing parameter names to function declarations --- kernel/os/include/os/os_mempool.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/os/include/os/os_mempool.h b/kernel/os/include/os/os_mempool.h index d5cf018de..71aa41877 100644 --- a/kernel/os/include/os/os_mempool.h +++ b/kernel/os/include/os/os_mempool.h @@ -139,8 +139,8 @@ struct os_mempool_info { * @return The next memory pool in the list to get information about, or NULL * when at the last memory pool. */ -struct os_mempool *os_mempool_info_get_next(struct os_mempool *, - struct os_mempool_info *); +struct os_mempool *os_mempool_info_get_next(struct os_mempool *mp, + struct os_mempool_info *omi); /** * Get information system memory pool by name.
