Missing variable initialization.

This commit is contained in:
Ulrich Germann 2015-10-25 19:26:48 +00:00
parent b89a9cf628
commit c879cd1d20

View File

@ -216,7 +216,7 @@ void Mismatch::PrintClippedHTML( ostream* out, int width )
// print target
// shorten target context if too long
int target_start = -1;
int target_end;
int target_end=0;
for(int i=0; i<m_target_length; i++)
if (target_annotation[i] != UNANNOTATED) {
if (target_start == -1)