aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/ppc/lib/strcase.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ppc/lib/strcase.c b/arch/ppc/lib/strcase.c
index 36b521091bbc..d98857890619 100644
--- a/arch/ppc/lib/strcase.c
+++ b/arch/ppc/lib/strcase.c
@@ -11,7 +11,7 @@ int strcasecmp(const char *s1, const char *s2)
11 return c1 - c2; 11 return c1 - c2;
12} 12}
13 13
14int strncasecmp(const char *s1, const char *s2, int n) 14int strncasecmp(const char *s1, const char *s2, size_t n)
15{ 15{
16 int c1, c2; 16 int c1, c2;
17 17