From 4d680e4a8fa578b00bb56ba7e9a7fd2f926b2beb Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Tue, 27 Jul 2021 22:38:45 +0200 Subject: [PATCH] tool_main: fix typo in comment The referred to library is NSPR, so fix the switched around characters. --- src/tool_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tool_main.c b/src/tool_main.c index 9f16a4e278..b40c8e9a80 100644 --- a/src/tool_main.c +++ b/src/tool_main.c @@ -214,7 +214,7 @@ static void main_free(struct GlobalConfig *config) convert_cleanup(); #ifdef USE_NSS if(PR_Initialized()) { - /* prevent valgrind from reporting still reachable mem from NSRP arenas */ + /* prevent valgrind from reporting still reachable mem from NSPR arenas */ PL_ArenaFinish(); /* prevent valgrind from reporting possibly lost memory (fd cache, ...) */ PR_Cleanup(); -- 2.47.2