Remove a useless newline, warnx already appends a newline

This commit is contained in:
Baptiste Daroussin 2014-02-23 23:49:10 +00:00
parent 37247d72eb
commit d8cfb94376
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=262418

View File

@ -299,7 +299,7 @@ parse_fingerprint(ucl_object_t *obj)
fct = HASH_SHA256;
if (fct == HASH_UNKNOWN) {
warnx("Unsupported hashing function: %s\n", function);
warnx("Unsupported hashing function: %s", function);
return (NULL);
}