summaryrefslogtreecommitdiffstats
path: root/arch/ppc
diff options
context:
space:
mode:
authorPaul Mackerras2006-03-28 08:02:14 +0200
committerPaul Mackerras2006-03-28 08:02:14 +0200
commitfacee873de8da5fe709c194f98eb0f2cc642a38c (patch)
tree03a27e962c2a7ce56b5f56b5b4c8cda9d6b14a7d /arch/ppc
parent[PATCH] powerpc: make ISA floppies work again (diff)
parentpowerpc: use memparse() for mem= command line parsing (diff)
downloadkernel-qcow2-linux-facee873de8da5fe709c194f98eb0f2cc642a38c.tar.gz
kernel-qcow2-linux-facee873de8da5fe709c194f98eb0f2cc642a38c.tar.xz
kernel-qcow2-linux-facee873de8da5fe709c194f98eb0f2cc642a38c.zip
Merge branch 'misc' of git://git.kernel.org/pub/scm/linux/kernel/git/galak/powerpc
Diffstat (limited to 'arch/ppc')
-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)
return c1 - c2;
}
-int strncasecmp(const char *s1, const char *s2, int n)
+int strncasecmp(const char *s1, const char *s2, size_t n)
{
int c1, c2;