src/lib: Remove space between function name and (
Fix the following warning detected by checkpatch.pl: WARNING: space prohibited between function name and open parenthesis '(' TEST=Build and run on Galileo Gen2 Change-Id: I8f3c79302dc5eb1861ffb245617a27addf8653ef Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/18731 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
@ -80,7 +80,7 @@ static int fseek(FILE *stream, long offset, int whence)
|
||||
{
|
||||
/* fseek should only be called with offset==0 and whence==SEEK_SET
|
||||
* to a freshly opened file. */
|
||||
gcc_assert (offset == 0 && whence == SEEK_SET);
|
||||
gcc_assert(offset == 0 && whence == SEEK_SET);
|
||||
#if CONFIG_DEBUG_COVERAGE
|
||||
printk(BIOS_DEBUG, "fseek %s offset=%ld whence=%d\n",
|
||||
stream->filename, offset, whence);
|
||||
|
Reference in New Issue
Block a user