small fixup missing in last patch.. trivial, as we agreed on the

solution already.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@255 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Stefan Reinauer 2007-03-12 12:30:57 +00:00
parent a73a37d820
commit e21a1bddd3

View file

@ -87,7 +87,7 @@ static inline size_t strlen(const char *str)
*/
static inline int strcmp(const char *s1, const char *s2)
{
unsigned char c1, c2;
char c1, c2;
/* Set c1 == c2, so that we can enter the while loop. */
c1 = 0;