Skip to content

Commit

Permalink
Add missing newline for error message
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Gallagher <[email protected]>
  • Loading branch information
sgallagher committed Jan 9, 2020
1 parent f9866df commit 4e3482b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/io_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -259,14 +259,14 @@ sscg_io_utils_add_output_key (struct sscg_stream **streams,
if (pass_prompt)
{
SSCG_ERROR (
"Passphrase prompt requested for %s, but no file path provided.",
"Passphrase prompt requested for %s, but no file path provided.\n",
sscg_get_file_type_name (filetype));
return EINVAL;
}

if (passphrase)
{
SSCG_ERROR ("Passphrase provided for %s, but no file path provided.",
SSCG_ERROR ("Passphrase provided for %s, but no file path provided.\n",
sscg_get_file_type_name (filetype));
return EINVAL;
}
Expand Down

0 comments on commit 4e3482b

Please sign in to comment.