summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Gustafsson <daniel@yesql.se>2021-07-27 22:38:45 +0200
committerDaniel Gustafsson <daniel@yesql.se>2021-07-27 22:38:45 +0200
commit4d680e4a8fa578b00bb56ba7e9a7fd2f926b2beb (patch)
tree748ff771ba18dac6e28c3a1f1714bac8310c0a5a
parentbeb1b1cb03fb921632a7aa2b40381d9caab0509f (diff)
downloadcurl-4d680e4a8fa578b00bb56ba7e9a7fd2f926b2beb.tar.gz
tool_main: fix typo in comment
The referred to library is NSPR, so fix the switched around characters.
-rw-r--r--src/tool_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tool_main.c b/src/tool_main.c
index 9f16a4e27..b40c8e9a8 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();