diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1996-08-31 16:52:44 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1996-08-31 16:52:44 +0000 |
| commit | e0c95ed947b6e682a4a4e3571fb4d3150f7e0d67 (patch) | |
| tree | d0ca99d3f53a0fe4ea60e83d05baa8825fdd8cc4 /lib/libc/string/strcmp.c | |
| parent | b316c8b2a70e468e809fea8adcc54332fcec954d (diff) | |
Notes
Diffstat (limited to 'lib/libc/string/strcmp.c')
| -rw-r--r-- | lib/libc/string/strcmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/string/strcmp.c b/lib/libc/string/strcmp.c index 79cfaa831b29..cf25e504b2d8 100644 --- a/lib/libc/string/strcmp.c +++ b/lib/libc/string/strcmp.c @@ -51,5 +51,5 @@ strcmp(s1, s2) while (*s1 == *s2++) if (*s1++ == 0) return (0); - return (*(unsigned char *)s1 - *(unsigned char *)--s2); + return (*(const unsigned char *)s1 - *(const unsigned char *)(s2 - 1)); } |
