aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcov.c
diff options
context:
space:
mode:
authorMike Stump <mrs@gcc.gnu.org>1997-05-06 23:05:54 +0000
committerMike Stump <mrs@gcc.gnu.org>1997-05-06 23:05:54 +0000
commitdb3cf6fb33804557ebeae4d9d142ce365826c1ea (patch)
tree5ce87329cf1055017d0bd705ecac06be33f23764 /gcc/gcov.c
parente3da301da35470986dd215f50086952bdb965c13 (diff)
downloadgcc-db3cf6fb33804557ebeae4d9d142ce365826c1ea.zip
gcc-db3cf6fb33804557ebeae4d9d142ce365826c1ea.tar.gz
gcc-db3cf6fb33804557ebeae4d9d142ce365826c1ea.tar.bz2
reformat a little to match GNU coding standards.
From-SVN: r14024
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 fe9dce8..b3ad330 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);