diff options
author | Mike Stump <mrs@gcc.gnu.org> | 1997-05-06 23:05:54 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 1997-05-06 23:05:54 +0000 |
commit | db3cf6fb33804557ebeae4d9d142ce365826c1ea (patch) | |
tree | 5ce87329cf1055017d0bd705ecac06be33f23764 /gcc/gcov.c | |
parent | e3da301da35470986dd215f50086952bdb965c13 (diff) | |
download | gcc-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.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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); |