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>
diff --git a/src/lib/coreboot_table.c b/src/lib/coreboot_table.c
index 32201c0..59f061b 100644
--- a/src/lib/coreboot_table.c
+++ b/src/lib/coreboot_table.c
@@ -465,7 +465,7 @@
 		(void *)entry);
 
 	head = lb_table_init(entry);
-	lb_forward(head, (struct lb_header*)target);
+	lb_forward(head, (struct lb_header *)target);
 
 	return (uintptr_t)lb_table_fini(head) - entry;
 }