summaryrefslogtreecommitdiff
path: root/gcc/gcov.c
diff options
context:
space:
mode:
authormrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>1997-05-06 23:05:54 +0000
committermrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>1997-05-06 23:05:54 +0000
commit0bc644e0031a247a30ddbe64fb50b94fdd4e19fd (patch)
tree5ce87329cf1055017d0bd705ecac06be33f23764 /gcc/gcov.c
parent37808e3a06df2a78362bff6389cc0b2e2812f490 (diff)
downloadgcc-0bc644e0031a247a30ddbe64fb50b94fdd4e19fd.tar.gz
reformat a little to match GNU coding standards.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14024 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcov.c')
-rw-r--r--gcc/gcov.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/gcov.c b/gcc/gcov.c
index fe9dce88597..b3ad330b42c 100644
--- a/gcc/gcov.c
+++ b/gcc/gcov.c
@@ -1301,8 +1301,8 @@ output_data ()
/* In case the source file line is larger than our buffer, keep
reading and outputing lines until we get a newline. */
len = strlen (string);
- while ((len == 0 || string[strlen (string) - 1] != '\n') &&
- retval != NULL)
+ while ((len == 0 || string[strlen (string) - 1] != '\n')
+ && retval != NULL)
{
retval = fgets (string, STRING_SIZE, source_file);
fputs (string, gcov_file);
@@ -1358,8 +1358,8 @@ output_data ()
/* In case the source file line is larger than our buffer, keep
reading and outputing lines until we get a newline. */
len = strlen (string);
- while ((len == 0 || string[strlen (string) - 1] != '\n') &&
- retval != NULL)
+ while ((len == 0 || string[strlen (string) - 1] != '\n')
+ && retval != NULL)
{
retval = fgets (string, STRING_SIZE, source_file);
fputs (string, gcov_file);