aboutsummaryrefslogtreecommitdiff
path: root/src/lib/gcov-glue.c
diff options
context:
space:
mode:
authorLee Leahy <leroy.p.leahy@intel.com>2017-03-10 15:23:24 -0800
committerMartin Roth <martinroth@google.com>2017-03-13 17:21:02 +0100
commit7340217262759c3daab41466138ba7d40a8f13d5 (patch)
treeded1fda647d4d9415f061ae5ac15ee4c685c7d48 /src/lib/gcov-glue.c
parentb1260553be842dd82b0b022dd40a22527d3e3659 (diff)
src/lib: Wrap lines at 80 columns
Fix the following warning detected by checkpatch.pl: WARNING: line over 80 characters TEST=Build and run on Galileo Gen2 Change-Id: I5fa3f8e950e2f0c60bd0e8f030342dc8c0469299 Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/18758 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/lib/gcov-glue.c')
-rw-r--r--src/lib/gcov-glue.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/gcov-glue.c b/src/lib/gcov-glue.c
index 9d401bd4be..4e46367ab1 100644
--- a/src/lib/gcov-glue.c
+++ b/src/lib/gcov-glue.c
@@ -49,7 +49,9 @@ static FILE *fopen(const char *path, const char *mode)
current_file = cbmem_add(CBMEM_ID_COVERAGE, 32*1024);
} else {
previous_file = current_file;
- current_file = (FILE *)(ALIGN(((unsigned long)previous_file->data + previous_file->len), 16));
+ current_file =
+ (FILE *)(ALIGN(((unsigned long)previous_file->data
+ + previous_file->len), 16));
}
// TODO check if we're at the end of the CBMEM region (ENOMEM)
@@ -60,7 +62,9 @@ static FILE *fopen(const char *path, const char *mode)
previous_file->next = current_file;
current_file->filename = (char *)&current_file[1];
strcpy(current_file->filename, path);
- current_file->data = (char *)ALIGN(((unsigned long)current_file->filename + strlen(path) + 1), 16);
+ current_file->data =
+ (char *)ALIGN(((unsigned long)current_file->filename
+ + strlen(path) + 1), 16);
current_file->offset = 0;
current_file->len = 0;
}