aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc/lib/strcase.c
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2006-03-27 18:26:18 -0600
committerKumar Gala <galak@kernel.crashing.org>2006-03-27 18:26:18 -0600
commitcbd312b94ed123dc7080c9591cb715cd2a7327c0 (patch)
treec46e928055b2d7f99ebca053c18a3191a07067ef /arch/ppc/lib/strcase.c
parentpowerpc: Fix goof in 6xx and POWER4 idle power-save functions (diff)
downloadlinux-dev-cbd312b94ed123dc7080c9591cb715cd2a7327c0.tar.xz
linux-dev-cbd312b94ed123dc7080c9591cb715cd2a7327c0.zip
ppc: fix strncasecmp prototype
Match, Linus's fix to arch/powerpc in arch/ppc. strcasecmp takes a size_t, not an int, as its third argument. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to '')
-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;