From 0db652ea73f9e12f77271da499608f98c3558505 Mon Sep 17 00:00:00 2001 From: Dana Robinson Date: Wed, 15 Jan 2025 05:13:33 -0800 Subject: [PATCH] Fix typo --- src/H5FDs3comms.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5FDs3comms.c b/src/H5FDs3comms.c index 25706e05c52..11c94cb68e0 100644 --- a/src/H5FDs3comms.c +++ b/src/H5FDs3comms.c @@ -1424,7 +1424,7 @@ H5FD__s3comms_parse_url(const char *url) if (CURLUE_OK != curl_url_set(curlurl, CURLUPART_URL, url, 0)) HGOTO_ERROR(H5E_VFL, H5E_CANTCREATE, NULL, "unable to parse url"); - /* Allocate memory for the retrned parsed URL */ + /* Allocate memory for the parsed URL to return */ if (NULL == (purl = (parsed_url_t *)H5MM_calloc(sizeof(parsed_url_t)))) HGOTO_ERROR(H5E_VFL, H5E_CANTALLOC, NULL, "can't allocate space for parsed_url_t");