--- lbbs/include/memory_pool.h 2025/06/12 09:46:42 1.1 +++ lbbs/include/memory_pool.h 2025/11/04 13:49:50 1.2 @@ -1,18 +1,10 @@ -/*************************************************************************** - memory_pool.h - description - ------------------- - copyright : (C) 2004-2025 by Leaflet - email : leaflet@leafok.com - ***************************************************************************/ - -/*************************************************************************** - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 3 of the License, or * - * (at your option) any later version. * - * * - ***************************************************************************/ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * memory_pool + * - memory pool + * + * Copyright (C) 2004-2025 by Leaflet + */ #ifndef _MEMORY_POOL_H_ #define _MEMORY_POOL_H_ @@ -28,7 +20,7 @@ struct memory_pool_t void **p_chunks; void *p_free; int node_count_allocated; - int node_count_free; + int node_count_free; int node_count_total; }; typedef struct memory_pool_t MEMORY_POOL;