From e21a1bddd374b6040888063ffe8d02f83f0f75bd Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Mon, 12 Mar 2007 12:30:57 +0000 Subject: [PATCH] small fixup missing in last patch.. trivial, as we agreed on the solution already. Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@255 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- include/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/string.h b/include/string.h index 105c709655..16cb63750d 100644 --- a/include/string.h +++ b/include/string.h @@ -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;