src/mainboard: Remove whitespace after sizeof

Change-Id: Ie2a047d35e69182812c349daedc5b3b5fde20122
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/16860
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Elyes HAOUAS 2016-10-03 21:32:58 +02:00 committed by Martin Roth
commit ec28aadbd1
7 changed files with 7 additions and 7 deletions

View file

@ -81,7 +81,7 @@ static int ioread = 0, iowrite = 0;
static char *regname(unsigned long addr)
{
static char name[16];
snprintf(name, sizeof (name), "0x%lx", addr);
snprintf(name, sizeof(name), "0x%lx", addr);
return name;
}