gcov.c (generate_results): Add missing semicolon and correct indent.

* gcov.c (generate_results): Add missing semicolon and
        correct indent.

From-SVN: r181353
This commit is contained in:
Kai Tietz 2011-11-14 17:38:23 +01:00 committed by Kai Tietz
parent a163acfa5d
commit fe860eb519
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2011-11-14 Kai Tietz <ktietz@redhat.com>
* gcov.c (generate_results): Add missing semicolon and
correct indent.
2011-11-14 Ira Rosen <ira.rosen@linaro.org>
PR bootstrap/51112

View File

@ -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);