From: Kai Tietz Date: Mon, 14 Nov 2011 16:38:23 +0000 (+0100) Subject: gcov.c (generate_results): Add missing semicolon and correct indent. X-Git-Tag: releases/gcc-4.7.0~2200 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe860eb519540be091bcbb9af5e188338ef6ccd8;p=thirdparty%2Fgcc.git gcov.c (generate_results): Add missing semicolon and correct indent. * gcov.c (generate_results): Add missing semicolon and correct indent. From-SVN: r181353 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8534bc675c9c..23358a0fc66d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-11-14 Kai Tietz + + * gcov.c (generate_results): Add missing semicolon and + correct indent. + 2011-11-14 Ira Rosen PR bootstrap/51112 diff --git a/gcc/gcov.c b/gcc/gcov.c index 038c36d0ac1c..dffb827bdf78 100644 --- a/gcc/gcov.c +++ b/gcc/gcov.c @@ -678,10 +678,10 @@ generate_results (const char *file_name) #if HAVE_DOS_BASED_FILE_SYSTEM if (first && src->coverage.name[1] == ':') - first = src->coverage.name[2] + first = src->coverage.name[2]; #endif - if (IS_DIR_SEPARATOR (first)) - continue; + if (IS_DIR_SEPARATOR (first)) + continue; } accumulate_line_counts (src);