tries should be line-oriented like the other --print= modes.
Terminate its counter output with a newline to avoid glued CLI output.
Before: output bytes were 2b 32 2d 33.
After: output bytes are 2b 32 2d 33 0a.
Follow-up for:
9e61ed11156d423dc171a3377119b39b1cc4a8d6
if (result.tries_left == UINT_MAX)
return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "No tries left/tries done information discovered.");
- printf("+%u-%u", result.tries_left, result.tries_done);
+ printf("+%u-%u\n", result.tries_left, result.tries_done);
break;
case PRINT_ALL: {