spelling: call it null-terminate consistently

With a dash, using two Ls. Also for different forms of the word.

Use NULL in all uppercase if it means a zero pointer.

Follow-up to 307b7543ea

Closes #17489
This commit is contained in:
Daniel Stenberg 2025-05-30 11:20:05 +02:00
parent 54834b4ad3
commit fe81a80ae7
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
39 changed files with 69 additions and 70 deletions

View file

@ -78,7 +78,7 @@ static ParameterError getstrn(char **str, const char *val,
return PARAM_NO_MEM;
memcpy(*str, val, len);
(*str)[len] = 0; /* null terminate */
(*str)[len] = 0; /* null-terminate */
return PARAM_OK;
}