aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2002-12-20 05:49:40 +0000
committerWarner Losh <imp@FreeBSD.org>2002-12-20 05:49:40 +0000
commit1e315c902244c7f4baafa0632b54fd95f3e1da06 (patch)
treec24d3a6202edbcf1079db8a8af6e065aaa15ce8c
parent68cd9bedfb2ef8bbe678b73edee691aa4fe59564 (diff)
Notes
-rw-r--r--sys/boot/i386/boot2/boot2.c2
-rw-r--r--sys/boot/i386/gptboot/gptboot.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/i386/boot2/boot2.c b/sys/boot/i386/boot2/boot2.c
index 7850bc178437..4f6229674c0c 100644
--- a/sys/boot/i386/boot2/boot2.c
+++ b/sys/boot/i386/boot2/boot2.c
@@ -133,7 +133,7 @@ static inline int
strcmp(const char *s1, const char *s2)
{
for (; *s1 == *s2 && *s1; s1++, s2++);
- return *s1 - *s2;
+ return (unsigned char)*s1 - (unsigned char)*s2;
}
#include "ufsread.c"
diff --git a/sys/boot/i386/gptboot/gptboot.c b/sys/boot/i386/gptboot/gptboot.c
index 7850bc178437..4f6229674c0c 100644
--- a/sys/boot/i386/gptboot/gptboot.c
+++ b/sys/boot/i386/gptboot/gptboot.c
@@ -133,7 +133,7 @@ static inline int
strcmp(const char *s1, const char *s2)
{
for (; *s1 == *s2 && *s1; s1++, s2++);
- return *s1 - *s2;
+ return (unsigned char)*s1 - (unsigned char)*s2;
}
#include "ufsread.c"