diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2011-06-01 19:29:49 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2011-06-01 19:29:49 +0000 |
commit | 0e1de46329ae299e224a8234e6ad135d6eed3c9e (patch) | |
tree | e9d6ed44f990a409ff4cfd44892d1345272b977c /lib | |
parent | 3e37593660205ab33991278fa74beb0bcb474d68 (diff) |
fix wcscasecmp() parameters; <wchar.h> was correct
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/string/wcscasecmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/string/wcscasecmp.c b/lib/libc/string/wcscasecmp.c index d4085ad3e87..b14997ee751 100644 --- a/lib/libc/string/wcscasecmp.c +++ b/lib/libc/string/wcscasecmp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wcscasecmp.c,v 1.1 2011/05/28 15:16:46 espie Exp $ */ +/* $OpenBSD: wcscasecmp.c,v 1.2 2011/06/01 19:29:48 naddy Exp $ */ /* * Copyright (c) 2011 Marc Espie @@ -30,7 +30,7 @@ #include "locale/runetype.h" int -wcscasecmp(const wchar_t *s1, const char *s2) +wcscasecmp(const wchar_t *s1, const wchar_t *s2) { wchar_t l1, l2; |