summaryrefslogtreecommitdiff
path: root/src/lib/gcov-glue.c
diff options
context:
space:
mode:
authorLee Leahy <leroy.p.leahy@intel.com>2017-03-08 16:52:22 -0800
committerLee Leahy <leroy.p.leahy@intel.com>2017-03-09 17:27:02 +0100
commitb2d834a93afe129851f9aa7400f3fb2f42be20a4 (patch)
tree798c6b1c82e0aed11325e8fb477baed4c676c943 /src/lib/gcov-glue.c
parent75b859978a6b1901301f4ee0b53de84d3d83bd0a (diff)
downloadcoreboot-b2d834a93afe129851f9aa7400f3fb2f42be20a4.tar.xz
src/lib: Fix space between type, * and variable name
Fix the following errors detected by checkpatch.pl: ERROR: "foo* bar" should be "foo *bar" ERROR: "(foo*)" should be "(foo *)" ERROR: "foo * const * bar" should be "foo * const *bar" TEST=Build and run on Galileo Gen2 Change-Id: I0d20ca360d8829f7d7670bacf0da4a0300bfb0c1 Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/18696 Tested-by: build bot (Jenkins) Reviewed-by: Philippe Mathieu-Daudé <philippe.mathieu.daude@gmail.com> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/lib/gcov-glue.c')
-rw-r--r--src/lib/gcov-glue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/gcov-glue.c b/src/lib/gcov-glue.c
index 5c18581dec..d200cd2d98 100644
--- a/src/lib/gcov-glue.c
+++ b/src/lib/gcov-glue.c
@@ -130,7 +130,7 @@ static void coverage_init(void *unused)
{
extern long __CTOR_LIST__;
typedef void (*func_ptr)(void) ;
- func_ptr *ctor = (func_ptr*) &__CTOR_LIST__;
+ func_ptr *ctor = (func_ptr *) &__CTOR_LIST__;
if (ctor == NULL)
return;