diff mbox

[committed] : Fix recent obvious typo in gcov.c

Message ID CAEwic4aiJYjk+RsD8PAMmXhnA2_=DON=dcK8UgsP_WQVFuSwyg@mail.gmail.com
State New
Headers show

Commit Message

Kai Tietz Nov. 14, 2011, 4:38 p.m. UTC
Hi,

this fixes bootstrap failure for Windows targets due recent change in gcov.c.

2011-11-14  Kai Tietz  <ktietz@redhat.com>

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

Committed at revision 181353.

Regards,
Kai
diff mbox

Patch

Index: gcov.c
===================================================================
--- gcov.c      (revision 181352)
+++ gcov.c      (working copy)
@@ -678,10 +678,10 @@ 

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