From 543c5408b60db55f3815c9cb909289fb4fee7834 Mon Sep 17 00:00:00 2001 From: fyodor Date: Mon, 23 Nov 2009 23:30:36 +0000 Subject: [PATCH] add a missing newline to a warning message --- osscan2.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osscan2.cc b/osscan2.cc index 521fc487b..28555c8a0 100644 --- a/osscan2.cc +++ b/osscan2.cc @@ -3596,7 +3596,7 @@ static void endRound(OsScanInfo *OSI, HostOsScan *HOS, int roundNum) { hsi->FP_matches[roundNum].num_perfect_matches > 0) { memcpy(&(hsi->target->seq), &hsi->hss->si, sizeof(struct seq_info)); if (roundNum > 0) { - if(o.verbose) log_write(LOG_STDOUT, "WARNING: OS didn't match until try #%d", roundNum + 1); + if(o.verbose) log_write(LOG_STDOUT, "WARNING: OS didn't match until try #%d\n", roundNum + 1); } match_fingerprint(hsi->target->FPR->FPs[roundNum], hsi->target->FPR, o.reference_FPs, OSSCAN_GUESS_THRESHOLD);