add missing newline to error message

Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Allan McRae 2018-04-30 00:20:01 +10:00
parent 4d1e27957d
commit c3402ab44e

View file

@ -992,7 +992,7 @@ static size_t length_check(size_t length, size_t position, size_t a,
{ {
if( a == 0 || length - position <= a) { if( a == 0 || length - position <= a) {
_alpm_log(handle, ALPM_LOG_ERROR, _alpm_log(handle, ALPM_LOG_ERROR,
_("%s: signature format error"), identifier); _("%s: signature format error\n"), identifier);
return -1; return -1;
} else { } else {
return 0; return 0;