aboutsummaryrefslogtreecommitdiffstats
path: root/memrchr.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--memrchr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/memrchr.c b/memrchr.c
index 36385ec..7871894 100644
--- a/memrchr.c
+++ b/memrchr.c
@@ -1,5 +1,5 @@
/* See LICENSE file for copyright and license details. */
-#include "libsimple.h"
+#include "common.h"
#ifndef TEST
@@ -7,7 +7,7 @@ void *
libsimple_memrchr(const void *s_, int c_, size_t n_)
{
char *s = *(char **)(void *)&s_, c = (char)c_;
- ssize_t n = n_;
+ ssize_t n = (ssize_t)n_;
while (n-- && s[n] != c);
return n < 0 ? NULL : &s[n];
}